library(datasets)
First lets bring in the Pokemon dataset.
Pokemon = read.csv(file = 'data/Pokemon.csv')
head(Pokemon)
## X. Name Type.1 Type.2 Total HP Attack Defense Sp..Atk
## 1 1 Bulbasaur Grass Poison 318 45 49 49 65
## 2 2 Ivysaur Grass Poison 405 60 62 63 80
## 3 3 Venusaur Grass Poison 525 80 82 83 100
## 4 3 VenusaurMega Venusaur Grass Poison 625 80 100 123 122
## 5 4 Charmander Fire 309 39 52 43 60
## 6 5 Charmeleon Fire 405 58 64 58 80
## Sp..Def Speed Generation Legendary
## 1 65 45 1 False
## 2 80 60 1 False
## 3 100 80 1 False
## 4 120 80 1 False
## 5 50 65 1 False
## 6 65 80 1 False
What is the most common type for pokemon?
Since there are secondary typing for Pokemon, we will have to combine the observations from the two variables.
But first lets see what the data shows for Pokemon that only have one type.
# this is the Type.2 for charmander
# a Pokemon that has a singular "Fire" type
Pokemon$Type.2[5]
## [1] ""
The data displays a “” or empty for a Pokemon that has to Type.2. This will muddy our data if we’re looking for the most common type, since technically “” is a valid observation as far as the code is concerned.
These are the tables for Type.1 and Type.2 variables.
table(Pokemon$Type.1)
##
## Bug Dark Dragon Electric Fairy Fighting Fire Flying
## 69 31 32 44 17 27 52 4
## Ghost Grass Ground Ice Normal Poison Psychic Rock
## 32 70 32 24 98 28 57 44
## Steel Water
## 27 112
table(Pokemon$Type.2)
##
## Bug Dark Dragon Electric Fairy Fighting Fire
## 386 3 20 18 6 23 26 12
## Flying Ghost Grass Ground Ice Normal Poison Psychic
## 97 14 25 35 14 4 34 33
## Rock Steel Water
## 14 22 14
# how many types are in Type.1
length(table(Pokemon$Type.1))
## [1] 18
# how many types are in Type.2
length(table(Pokemon$Type.2))
## [1] 19
As you can see there is an extra type in
table(Pokemon$Type.2) that is “” with the number 386 to
represent all of the observations/Pokemon with “” for Type.2.
This is the combined table of Type.1 and Type.2, minus the empty
“” type. Now we need to be careful, because this does not represent
every Pokemon. As you can see when we look at the sum of the table, it
shows 1214 when we only have 800 observations/Pokemon.
combinedTypeTable = (table(Pokemon$Type.1) + table(Pokemon$Type.2)[-1])
combinedTypeTable
##
## Bug Dark Dragon Electric Fairy Fighting Fire Flying
## 72 51 50 50 40 53 64 101
## Ghost Grass Ground Ice Normal Poison Psychic Rock
## 46 95 67 38 102 62 90 58
## Steel Water
## 49 126
paste("The sum is: ", sum(combinedTypeTable))
## [1] "The sum is: 1214"
Finally lets see which type is the most common for pokemon, either as their Type.1 OR their Type.2.
# finds the max(table), and then finds the index of the max value, then returns both the number and its name, in our case the type
combinedTypeTable[which(combinedTypeTable == max(combinedTypeTable))]
## Water
## 126
As you can see, the most common typing for a Pokemon is Water.
But as always a visualization will help in contextualizing this piece of information.
combinedTypeTable = sort(combinedTypeTable, decreasing=TRUE)
barplot(combinedTypeTable[1:5], main = "TOP 5 MOST COMMON TYPES IN POKEMON", ylab="Frequency", col=c("lightblue"))
What generation has the greatest number of each “type”(Type.1 and Type.2 combined) of Pokemon
First we need to know how many different generations are present in our data.
table(Pokemon$Generation)
##
## 1 2 3 4 5 6
## 166 106 160 121 165 82
There are 6 different generations of Pokemon listed in the data, with a varying number of Pokemon for each generation.
Now we need to parse the data so that we can see how many of each type is in each generation.
# table for the number of each Type.1 type for all entries where the Generation is 1
table(Pokemon$Type.1[which(Pokemon$Generation == 1)])
##
## Bug Dragon Electric Fairy Fighting Fire Ghost Grass
## 14 3 9 2 7 14 4 13
## Ground Ice Normal Poison Psychic Rock Water
## 8 2 24 14 11 10 31
# table for the number of each Type.2 type for all entries where the Generation is 1
table(Pokemon$Type.2[which(Pokemon$Generation == 1)])
##
## Dark Dragon Fairy Fighting Flying Grass Ground
## 88 1 1 3 2 23 2 6
## Ice Poison Psychic Rock Steel Water
## 3 22 7 2 2 4
length(table(Pokemon$Type.1[which(Pokemon$Generation == 1)]))
## [1] 15
length(table(Pokemon$Type.2[which(Pokemon$Generation == 1)]))
## [1] 14
But we run in to a problem due to the way that Pokemon types are set up. A Pokemon has one or two types, and the Type.2 is valued the same as Type.1. This means that we need to count both when looking at how many types of each Pokemon are in each generation. For example the first Pokemon in the data, Bulbasaur, would count as both a “Grass” and “Poison” type, with both holding equal weight. This causes discrepancies like we see above, where some types are missing from the Type.2 table and the Type.1 table . We will have to modify the table ourselves to make this work.
Since we will most likely have to do this for every generation, lets make a function that fills in the missing “types” and returns one vector with the combined values for both Type.1 and Type.2
# this function will help us combine the two Type tables int o one table with all unique types from both Type.1 and Type.2, as well as add up duplicates
combineTypeTblByGen = function(generation){
# merging the table of Type.1 and Type.2 for the generation
mergedTypeTable = merge(table(Pokemon$Type.1[which(Pokemon$Generation == generation)]), table(Pokemon$Type.2[which(Pokemon$Generation == generation)])[-1], all= TRUE)
# vector version of the merged tables above
typeVec = mergedTypeTable[[2]]
names(typeVec) = mergedTypeTable[[1]]
# for loop that adds up the repeat values for the types, and then removes the duplicate name+value from the vector
len = length(typeVec) - 1
for(i in 1:len){
if(i >= length(typeVec)){break}
else if(names(typeVec[i]) == names(typeVec[i + 1])){
typeVec[i+1] = typeVec[i] + typeVec[i+1]
#print(typeVec[i])
typeVec = typeVec[-c(i)]
}
}
return(typeVec)
}
barplot(combineTypeTblByGen(1), las=2, main="Frequency of Types for Generation 1")
The plot above combines frequency of “types” in both Type1 and Type2 for generation 1, and because we have the function combineTypeTblByGen() we are able to replicate this for every other generation as well.
Since we have the combined tables for every generation, we can move on to comparing the generations by Type.
This next function will allow us to see how many of one specific type is in every generation. For example it will allow us to see the number of “Bug” types there are in generation 1 through 6.
# function takes in a character argument that represents a Pokemon Type and returns a vector of length 6, with each index representing the number of that type of pokemon are in that generation number
compareTypeAcrossGen = function(type){
oneTypeAllGensVec = c()
for(i in 1:6){
#print(combineTypeTblByGen(i)[type])
oneTypeAllGensVec[i] = combineTypeTblByGen(i)[type]
}
names(oneTypeAllGensVec) = c("Gen 1", "Gen 2", "Gen 3", "Gen 4", "Gen 5", "Gen 6")
return(oneTypeAllGensVec)
}
compareTypeAcrossGen("Bug")
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 14 12 14 11 18 3
compareTypeAcrossGen("Dark")
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 1 8 13 7 16 3
barplot(compareTypeAcrossGen("Bug"), main="Frequency of Bug Types in Each Generation(Gen)", las=2, col = "lightgreen")
We have the comparisons across generations for individual types, but that doesn’t accomplish anything unless we want to create 18 different barplots. Instead lets use the plotly package to create an interactive barplot that shows the frequency of each type across the generations to get a broader understanding of the dataset.
typeByGenTraces[]
## [[1]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 14 12 14 11 18 3
##
## [[2]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 4 2 15 4 12 9
##
## [[3]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 9 9 5 12 12 3
##
## [[4]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 5 8 8 1 3 14
##
## [[5]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 9 2 9 10 17 4
##
## [[6]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 14 11 9 6 16 8
##
## [[7]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 4 1 8 9 9 15
##
## [[8]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 15 10 18 17 20 15
##
## [[9]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 14 11 16 12 12 2
##
## [[10]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 5 5 7 8 9 2
##
## [[11]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 24 15 18 18 19 4
##
## [[12]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 36 4 5 8 7 2
##
## [[13]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 18 10 28 10 16 8
##
## [[14]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 12 8 12 7 10 9
##
## [[15]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 35 18 31 15 18 9
##
## [[16]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 1 8 13 7 16 3
##
## [[17]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 23 19 14 16 21 8
##
## [[18]]
## Gen 1 Gen 2 Gen 3 Gen 4 Gen 5 Gen 6
## 2 3 12 12 12 5
q2FinalGraph
library(DBI)
library(RSQLite)
## Warning: package 'RSQLite' was built under R version 4.4.3
drv = dbDriver("SQLite")
pokemonDatabase = dbConnect(drv, dbname = "./data/veekun-pokedex.sqlite")
dbExecute(pokemonDatabase, "PRAGMA foreign_keys = on")
## [1] 0
dbListTables(pokemonDatabase)
## [1] "abilities" "ability_changelog"
## [3] "ability_changelog_prose" "ability_flavor_text"
## [5] "ability_names" "ability_prose"
## [7] "berries" "berry_firmness"
## [9] "berry_firmness_names" "berry_flavors"
## [11] "characteristic_text" "characteristics"
## [13] "conquest_episode_names" "conquest_episode_warriors"
## [15] "conquest_episodes" "conquest_kingdom_names"
## [17] "conquest_kingdoms" "conquest_max_links"
## [19] "conquest_move_data" "conquest_move_displacement_prose"
## [21] "conquest_move_displacements" "conquest_move_effect_prose"
## [23] "conquest_move_effects" "conquest_move_range_prose"
## [25] "conquest_move_ranges" "conquest_pokemon_abilities"
## [27] "conquest_pokemon_evolution" "conquest_pokemon_moves"
## [29] "conquest_pokemon_stats" "conquest_stat_names"
## [31] "conquest_stats" "conquest_transformation_pokemon"
## [33] "conquest_transformation_warriors" "conquest_warrior_archetypes"
## [35] "conquest_warrior_names" "conquest_warrior_rank_stat_map"
## [37] "conquest_warrior_ranks" "conquest_warrior_skill_names"
## [39] "conquest_warrior_skills" "conquest_warrior_specialties"
## [41] "conquest_warrior_stat_names" "conquest_warrior_stats"
## [43] "conquest_warrior_transformation" "conquest_warriors"
## [45] "contest_combos" "contest_effect_prose"
## [47] "contest_effects" "contest_type_names"
## [49] "contest_types" "egg_group_prose"
## [51] "egg_groups" "encounter_condition_prose"
## [53] "encounter_condition_value_map" "encounter_condition_value_prose"
## [55] "encounter_condition_values" "encounter_conditions"
## [57] "encounter_method_prose" "encounter_methods"
## [59] "encounter_slots" "encounters"
## [61] "evolution_chains" "evolution_trigger_prose"
## [63] "evolution_triggers" "experience"
## [65] "genders" "generation_names"
## [67] "generations" "growth_rate_prose"
## [69] "growth_rates" "item_categories"
## [71] "item_category_prose" "item_flag_map"
## [73] "item_flag_prose" "item_flags"
## [75] "item_flavor_summaries" "item_flavor_text"
## [77] "item_fling_effect_prose" "item_fling_effects"
## [79] "item_game_indices" "item_names"
## [81] "item_pocket_names" "item_pockets"
## [83] "item_prose" "items"
## [85] "language_names" "languages"
## [87] "location_area_encounter_rates" "location_area_prose"
## [89] "location_areas" "location_game_indices"
## [91] "location_names" "locations"
## [93] "machines" "move_battle_style_prose"
## [95] "move_battle_styles" "move_changelog"
## [97] "move_damage_class_prose" "move_damage_classes"
## [99] "move_effect_changelog" "move_effect_changelog_prose"
## [101] "move_effect_prose" "move_effects"
## [103] "move_flag_map" "move_flag_prose"
## [105] "move_flags" "move_flavor_summaries"
## [107] "move_flavor_text" "move_meta"
## [109] "move_meta_ailment_names" "move_meta_ailments"
## [111] "move_meta_categories" "move_meta_category_prose"
## [113] "move_meta_stat_changes" "move_names"
## [115] "move_target_prose" "move_targets"
## [117] "moves" "nature_battle_style_preferences"
## [119] "nature_names" "nature_pokeathlon_stats"
## [121] "natures" "pal_park"
## [123] "pal_park_area_names" "pal_park_areas"
## [125] "pokeathlon_stat_names" "pokeathlon_stats"
## [127] "pokedex_prose" "pokedex_version_groups"
## [129] "pokedexes" "pokemon"
## [131] "pokemon_abilities" "pokemon_color_names"
## [133] "pokemon_colors" "pokemon_dex_numbers"
## [135] "pokemon_egg_groups" "pokemon_evolution"
## [137] "pokemon_form_generations" "pokemon_form_names"
## [139] "pokemon_form_pokeathlon_stats" "pokemon_forms"
## [141] "pokemon_game_indices" "pokemon_habitat_names"
## [143] "pokemon_habitats" "pokemon_items"
## [145] "pokemon_move_method_prose" "pokemon_move_methods"
## [147] "pokemon_moves" "pokemon_shape_prose"
## [149] "pokemon_shapes" "pokemon_species"
## [151] "pokemon_species_flavor_summaries" "pokemon_species_flavor_text"
## [153] "pokemon_species_names" "pokemon_species_prose"
## [155] "pokemon_stats" "pokemon_types"
## [157] "region_names" "regions"
## [159] "stat_names" "stats"
## [161] "super_contest_combos" "super_contest_effect_prose"
## [163] "super_contest_effects" "type_efficacy"
## [165] "type_game_indices" "type_names"
## [167] "types" "version_group_pokemon_move_methods"
## [169] "version_group_regions" "version_groups"
## [171] "version_names" "versions"
This database and tables needs to be “cleaned” or organized into the
information that I actually need –> practice organizing and putting
data togehter with joins
Questions to ask/analyze:
how has the stats fro certain types changed over the course of the
generartions?
is this change significant?
Pokedex app? image, stats, and reads pokedex entry? check normality for stats by type
hypothesis: flying types are significantly faster than ground, check?
When I think of flying type Pokemon, I imagine fast aerial predators,
so naturally you would think that their speed stat is significantly
higher than that of ground/rock types that are usually large boulders
and giants. But do the stats, get it?, actually back this up?
Lets Find Out!
Step 1: get a data frame with every flying type and their
speed stat and every ground type and their speed stat
Lets build this dataframe step by step.
Step 1a: get a dataframe with every Pokemon and its speed
stat
dbGetQuery(pokemonDatabase,
"PRAGMA FOREIGN_KEY_LIST(pokemon_stats)")
## id seq table from to on_update on_delete match
## 1 0 0 stats stat_id id NO ACTION NO ACTION NONE
## 2 1 0 pokemon pokemon_id id NO ACTION NO ACTION NONE
dbGetQuery(pokemonDatabase, "
SELECT pokemon_id, identifier, base_stat
FROM pokemon_stats INNER JOIN stats
ON pokemon_stats.stat_id = stats.id
WHERE identifier = 'speed'
LIMIT 20")
## pokemon_id identifier base_stat
## 1 1 speed 45
## 2 2 speed 60
## 3 3 speed 80
## 4 4 speed 65
## 5 5 speed 80
## 6 6 speed 100
## 7 7 speed 43
## 8 8 speed 58
## 9 9 speed 78
## 10 10 speed 45
## 11 11 speed 30
## 12 12 speed 70
## 13 13 speed 50
## 14 14 speed 35
## 15 15 speed 75
## 16 16 speed 56
## 17 17 speed 71
## 18 18 speed 101
## 19 19 speed 72
## 20 20 speed 97
Step 1b: dataframe with every pokemon’s type
# dbGetQuery(pokemonDatabase, "
# SELECT *
# FROM pokemon_types")
#
# dbGetQuery(pokemonDatabase, "
# PRAGMA FOREIGN_KEY_LIST(pokemon_types)")
#
# dbGetQuery(pokemonDatabase, "
# SELECT *
# FROM types")
dbGetQuery(pokemonDatabase, "
PRAGMA FOREIGN_KEY_LIST(pokemon_types)
")
## id seq table from to on_update on_delete match
## 1 0 0 types type_id id NO ACTION NO ACTION NONE
## 2 1 0 pokemon pokemon_id id NO ACTION NO ACTION NONE
dbGetQuery(pokemonDatabase, "
SELECT pokemon_id, slot, identifier as TYPE
FROM pokemon_types INNER JOIN types
ON pokemon_types.type_id = types.id
LIMIT 20")
## pokemon_id slot TYPE
## 1 1 1 grass
## 2 1 2 poison
## 3 2 1 grass
## 4 2 2 poison
## 5 3 1 grass
## 6 3 2 poison
## 7 4 1 fire
## 8 5 1 fire
## 9 6 1 fire
## 10 6 2 flying
## 11 7 1 water
## 12 8 1 water
## 13 9 1 water
## 14 10 1 bug
## 15 11 1 bug
## 16 12 1 bug
## 17 12 2 flying
## 18 13 1 bug
## 19 13 2 poison
## 20 14 1 bug
Step 1c: Now that we have two dataframes with every pokemon and its speed stat and another with every Pokemon and its type, we need a dataframe that combines these two.
# initial query with all required columns
dbGetQuery(pokemonDatabase, "
SELECT pokemon.id, pokemon.identifier, pokemon_types.pokemon_id, pokemon_types.type_id, types.identifier, pokemon_stats.stat_id, pokemon_stats.base_stat, stats.identifier
FROM pokemon_types
INNER JOIN pokemon ON pokemon_types.pokemon_id = pokemon.id
INNER JOIN types ON pokemon_types.type_id = types.id
INNER JOIN pokemon_stats ON pokemon_stats.pokemon_id = pokemon.id
INNER JOIN stats ON pokemon_stats.stat_id = stats.id
LIMIT 20
")
## id identifier pokemon_id type_id identifier stat_id base_stat
## 1 1 bulbasaur 1 12 grass 1 45
## 2 1 bulbasaur 1 12 grass 2 49
## 3 1 bulbasaur 1 12 grass 3 49
## 4 1 bulbasaur 1 12 grass 4 65
## 5 1 bulbasaur 1 12 grass 5 65
## 6 1 bulbasaur 1 12 grass 6 45
## 7 1 bulbasaur 1 4 poison 1 45
## 8 1 bulbasaur 1 4 poison 2 49
## 9 1 bulbasaur 1 4 poison 3 49
## 10 1 bulbasaur 1 4 poison 4 65
## 11 1 bulbasaur 1 4 poison 5 65
## 12 1 bulbasaur 1 4 poison 6 45
## 13 2 ivysaur 2 12 grass 1 60
## 14 2 ivysaur 2 12 grass 2 62
## 15 2 ivysaur 2 12 grass 3 63
## 16 2 ivysaur 2 12 grass 4 80
## 17 2 ivysaur 2 12 grass 5 80
## 18 2 ivysaur 2 12 grass 6 60
## 19 2 ivysaur 2 4 poison 1 60
## 20 2 ivysaur 2 4 poison 2 62
## identifier
## 1 hp
## 2 attack
## 3 defense
## 4 special-attack
## 5 special-defense
## 6 speed
## 7 hp
## 8 attack
## 9 defense
## 10 special-attack
## 11 special-defense
## 12 speed
## 13 hp
## 14 attack
## 15 defense
## 16 special-attack
## 17 special-defense
## 18 speed
## 19 hp
## 20 attack
Save the dataframe so that we can do statistics on it with R
# cleaned up query with all required info for flying and ground type pokemon
flynGrndSPD_df = dbGetQuery(pokemonDatabase, "
SELECT pokemon.identifier AS name, types.identifier AS type, stats.identifier AS stat_name, pokemon_stats.base_stat
FROM pokemon_types
INNER JOIN pokemon ON pokemon_types.pokemon_id = pokemon.id
INNER JOIN types ON pokemon_types.type_id = types.id
INNER JOIN pokemon_stats ON pokemon_stats.pokemon_id = pokemon.id
INNER JOIN stats ON pokemon_stats.stat_id = stats.id
WHERE stat_name LIKE 'speed' AND (type LIKE 'flying' OR type LIKE 'ground')
")
# data frame with flying types and their speed stats
flyingSpeeds = flynGrndSPD_df[which(flynGrndSPD_df$type == "flying"), ]
# data frame with ground types and their speed stats
groundSpeeds = flynGrndSPD_df[which(flynGrndSPD_df$type == "ground"), ]
flynGrndSPD_df
## name type stat_name base_stat
## 1 charizard flying speed 100
## 2 butterfree flying speed 70
## 3 pidgey flying speed 56
## 4 pidgeotto flying speed 71
## 5 pidgeot flying speed 101
## 6 spearow flying speed 70
## 7 fearow flying speed 100
## 8 sandshrew ground speed 40
## 9 sandslash ground speed 65
## 10 nidoqueen ground speed 76
## 11 nidoking ground speed 85
## 12 zubat flying speed 55
## 13 golbat flying speed 90
## 14 diglett ground speed 95
## 15 dugtrio ground speed 120
## 16 geodude ground speed 20
## 17 graveler ground speed 35
## 18 golem ground speed 45
## 19 farfetchd flying speed 60
## 20 doduo flying speed 75
## 21 dodrio flying speed 100
## 22 onix ground speed 70
## 23 cubone ground speed 35
## 24 marowak ground speed 45
## 25 rhyhorn ground speed 25
## 26 rhydon ground speed 40
## 27 scyther flying speed 105
## 28 gyarados flying speed 81
## 29 aerodactyl flying speed 130
## 30 articuno flying speed 85
## 31 zapdos flying speed 100
## 32 moltres flying speed 90
## 33 dragonite flying speed 80
## 34 hoothoot flying speed 50
## 35 noctowl flying speed 70
## 36 ledyba flying speed 55
## 37 ledian flying speed 85
## 38 crobat flying speed 130
## 39 togetic flying speed 40
## 40 natu flying speed 70
## 41 xatu flying speed 95
## 42 hoppip flying speed 50
## 43 skiploom flying speed 80
## 44 jumpluff flying speed 110
## 45 yanma flying speed 95
## 46 wooper ground speed 15
## 47 quagsire ground speed 35
## 48 murkrow flying speed 91
## 49 gligar ground speed 85
## 50 gligar flying speed 85
## 51 steelix ground speed 30
## 52 swinub ground speed 50
## 53 piloswine ground speed 50
## 54 delibird flying speed 75
## 55 mantine flying speed 70
## 56 skarmory flying speed 70
## 57 phanpy ground speed 40
## 58 donphan ground speed 50
## 59 larvitar ground speed 41
## 60 pupitar ground speed 51
## 61 lugia flying speed 110
## 62 ho-oh flying speed 90
## 63 marshtomp ground speed 50
## 64 swampert ground speed 60
## 65 beautifly flying speed 65
## 66 taillow flying speed 85
## 67 swellow flying speed 125
## 68 wingull flying speed 85
## 69 pelipper flying speed 65
## 70 masquerain flying speed 60
## 71 nincada ground speed 40
## 72 ninjask flying speed 160
## 73 numel ground speed 35
## 74 camerupt ground speed 40
## 75 trapinch ground speed 10
## 76 vibrava ground speed 70
## 77 flygon ground speed 100
## 78 swablu flying speed 50
## 79 altaria flying speed 80
## 80 barboach ground speed 60
## 81 whiscash ground speed 60
## 82 baltoy ground speed 55
## 83 claydol ground speed 75
## 84 tropius flying speed 51
## 85 salamence flying speed 100
## 86 groudon ground speed 90
## 87 rayquaza flying speed 95
## 88 torterra ground speed 56
## 89 starly flying speed 60
## 90 staravia flying speed 80
## 91 staraptor flying speed 100
## 92 mothim flying speed 66
## 93 combee flying speed 70
## 94 vespiquen flying speed 40
## 95 gastrodon ground speed 39
## 96 drifloon flying speed 70
## 97 drifblim flying speed 80
## 98 honchkrow flying speed 71
## 99 chatot flying speed 91
## 100 gible ground speed 42
## 101 gabite ground speed 82
## 102 garchomp ground speed 102
## 103 hippopotas ground speed 32
## 104 hippowdon ground speed 47
## 105 mantyke flying speed 50
## 106 rhyperior ground speed 40
## 107 togekiss flying speed 80
## 108 yanmega flying speed 95
## 109 gliscor ground speed 95
## 110 gliscor flying speed 95
## 111 mamoswine ground speed 80
## 112 pidove flying speed 43
## 113 tranquill flying speed 65
## 114 unfezant flying speed 93
## 115 woobat flying speed 72
## 116 swoobat flying speed 114
## 117 drilbur ground speed 68
## 118 excadrill ground speed 88
## 119 palpitoad ground speed 69
## 120 seismitoad ground speed 74
## 121 sandile ground speed 65
## 122 krokorok ground speed 74
## 123 krookodile ground speed 92
## 124 sigilyph flying speed 97
## 125 archen flying speed 70
## 126 archeops flying speed 110
## 127 ducklett flying speed 55
## 128 swanna flying speed 98
## 129 emolga flying speed 103
## 130 stunfisk ground speed 32
## 131 golett ground speed 35
## 132 golurk ground speed 55
## 133 rufflet flying speed 60
## 134 braviary flying speed 80
## 135 vullaby flying speed 60
## 136 mandibuzz flying speed 80
## 137 tornadus-incarnate flying speed 111
## 138 thundurus-incarnate flying speed 111
## 139 landorus-incarnate ground speed 101
## 140 landorus-incarnate flying speed 101
## 141 diggersby ground speed 78
## 142 fletchling flying speed 62
## 143 fletchinder flying speed 84
## 144 talonflame flying speed 126
## 145 vivillon flying speed 89
## 146 hawlucha flying speed 118
## 147 noibat flying speed 55
## 148 noivern flying speed 123
## 149 yveltal flying speed 99
## 150 zygarde ground speed 95
## 151 wormadam-sandy ground speed 36
## 152 shaymin-sky flying speed 127
## 153 rotom-fan flying speed 86
## 154 tornadus-therian flying speed 121
## 155 thundurus-therian flying speed 101
## 156 landorus-therian ground speed 91
## 157 landorus-therian flying speed 91
## 158 charizard-mega-y flying speed 100
## 159 pinsir-mega flying speed 105
## 160 aerodactyl-mega flying speed 150
## 161 garchomp-mega ground speed 92
## 162 swampert-mega ground speed 70
## 163 steelix-mega ground speed 30
## 164 pidgeot-mega flying speed 121
## 165 groudon-primal ground speed 90
## 166 rayquaza-mega flying speed 115
## 167 camerupt-mega ground speed 20
## 168 salamence-mega flying speed 120
In order to figure out what hypothesis test to choose, lets figure out if our data follows a normal distribution.
hist(flyingSpeeds$base_stat, main = "Flying Type Speed Distribution", xlab = "Speed stat")
hist(groundSpeeds$base_stat, main = "Ground Type Speed Distribution", xlab = "Speed stat")
qqnorm(flyingSpeeds$base_stat, main = "Normal Q-Q Plot for Flying Types")
qqline(flyingSpeeds$base_stat, col = "red")
qqnorm(groundSpeeds$base_stat, main = "Normal Q-Q Plot for Ground Types")
qqline(groundSpeeds$base_stat, col = "red")
While the data doesnt appear to be normal, it helps to do a formal
test to make sure that we are making an accurate interpretation of our
data that isnt solely reliant on visuals.
In order to do that, we’ll conduct a Shapiro Wilk Test
on a random sample from both groups.
First we need to take random samples from both groups with sample size n = 30.
flySpeedSample = sample(groundSpeeds$base_stat, 30, replace = TRUE)
grndSpeedSample = sample(flyingSpeeds$base_stat, 30, replace = TRUE)
Then we can use R’s built in function for the Shapiro test for normality.
shapiro.test(flySpeedSample)
##
## Shapiro-Wilk normality test
##
## data: flySpeedSample
## W = 0.91445, p-value = 0.0193
shapiro.test(grndSpeedSample)
##
## Shapiro-Wilk normality test
##
## data: grndSpeedSample
## W = 0.94422, p-value = 0.1182
Lets interpret these results: For info, the Shapiro Wilk test is a
hypothesis test where the null hypothesis is that a random sample comes
from a normally distributed dataset.
The W statistic is the result of the Shapiro Wilk Test, which measures
how close the sample matches a normal distribution, with 1 being normal
and 0 being not normal. The P value determines if we can reject the null
hypothesis that the sample comes from a normally distributed dataset. If
the p value result is <= 0.05, we can reject the null hypothesis,
however if the p value result is > 0.05 we are unable to reject the
null hypothesis that the random sample comes from a normally distributed
dataset.
However, we encounter a problem. Depending on the random sample, the
samples either fail or pass the test. We want to see if it is passing
this test a reliable number of times. So lets build a function that does
the shapiro wilk test on the 100 different samples, and if 95% of them
are passing, we can reasonable say that they pass the shapiro wilk
test.
shapiroSample = function(dataset, reps, sampleSize){
pass_vec = c()
for(i in 1:reps){
sample = sample(dataset, sampleSize, replace = TRUE)
outcome = shapiro.test(sample)
# checks to see if this sample rejects the null hypothesis or not
# if it does adds a 0 for fail, and if not adds a 1 for pass
if(outcome[2] > 0.05){pass_vec[i] = 1}
else if(outcome[2] <= 0.05){pass_vec[i] = 0}
}
return(pass_vec)
}
Now lets execute this function for our data.
mean(shapiroSample(flyingSpeeds$base_stat, 100, 30))
## [1] 0.87
mean(shapiroSample(groundSpeeds$base_stat, 100, 30))
## [1] 0.61
Since the percentage of samples out of 100 that pass the Shapiro Wilk
test are nowhere close to 95% for both flying and ground types, we can
say that our data is not normally distributed.
So what do we do now?
We need to find an appropriate statistical test that will give us the
findings we are looking for without normality of the data being a
requirement.
What insight do we gain from the existence/nonexistence of a
relationship between base stats and abilities?
Step 1: Lets query to get a dataframe with Pokemon, their name, their abilities, and their base stat totals.
# querying the relations that have the fields for the final data frame
dbGetQuery(pokemonDatabase, "PRAGMA FOREIGN_KEY_LIST(pokemon_abilities)")
## id seq table from to on_update on_delete match
## 1 0 0 abilities ability_id id NO ACTION NO ACTION NONE
## 2 1 0 pokemon pokemon_id id NO ACTION NO ACTION NONE
dbGetQuery(pokemonDatabase, "
SELECT *
FROM pokemon_abilities
")
## pokemon_id ability_id is_hidden slot
## 1 1 65 0 1
## 2 1 34 1 3
## 3 2 65 0 1
## 4 2 34 1 3
## 5 3 65 0 1
## 6 3 34 1 3
## 7 4 66 0 1
## 8 4 94 1 3
## 9 5 66 0 1
## 10 5 94 1 3
## 11 6 66 0 1
## 12 6 94 1 3
## 13 7 67 0 1
## 14 7 44 1 3
## 15 8 67 0 1
## 16 8 44 1 3
## 17 9 67 0 1
## 18 9 44 1 3
## 19 10 19 0 1
## 20 10 50 1 3
## 21 11 61 0 1
## 22 12 14 0 1
## 23 12 110 1 3
## 24 13 19 0 1
## 25 13 50 1 3
## 26 14 61 0 1
## 27 15 68 0 1
## 28 15 97 1 3
## 29 16 51 0 1
## 30 16 77 0 2
## 31 16 145 1 3
## 32 17 51 0 1
## 33 17 77 0 2
## 34 17 145 1 3
## 35 18 51 0 1
## 36 18 77 0 2
## 37 18 145 1 3
## 38 19 50 0 1
## 39 19 62 0 2
## 40 19 55 1 3
## 41 20 50 0 1
## 42 20 62 0 2
## 43 20 55 1 3
## 44 21 51 0 1
## 45 21 97 1 3
## 46 22 51 0 1
## 47 22 97 1 3
## 48 23 22 0 1
## 49 23 61 0 2
## 50 23 127 1 3
## 51 24 22 0 1
## 52 24 61 0 2
## 53 24 127 1 3
## 54 25 9 0 1
## 55 25 31 1 3
## 56 26 9 0 1
## 57 26 31 1 3
## 58 27 8 0 1
## 59 27 146 1 3
## 60 28 8 0 1
## 61 28 146 1 3
## 62 29 38 0 1
## 63 29 79 0 2
## 64 29 55 1 3
## 65 30 38 0 1
## 66 30 79 0 2
## 67 30 55 1 3
## 68 31 38 0 1
## 69 31 79 0 2
## 70 31 125 1 3
## 71 32 38 0 1
## 72 32 79 0 2
## 73 32 55 1 3
## 74 33 38 0 1
## 75 33 79 0 2
## 76 33 55 1 3
## 77 34 38 0 1
## 78 34 79 0 2
## 79 34 125 1 3
## 80 35 56 0 1
## 81 35 98 0 2
## 82 35 132 1 3
## 83 36 56 0 1
## 84 36 98 0 2
## 85 36 109 1 3
## 86 37 18 0 1
## 87 37 70 1 3
## 88 38 18 0 1
## 89 38 70 1 3
## 90 39 56 0 1
## 91 39 172 0 2
## 92 39 132 1 3
## 93 40 56 0 1
## 94 40 172 0 2
## 95 40 119 1 3
## 96 41 39 0 1
## 97 41 151 1 3
## 98 42 39 0 1
## 99 42 151 1 3
## 100 43 34 0 1
## 101 43 50 1 3
## 102 44 34 0 1
## 103 44 1 1 3
## 104 45 34 0 1
## 105 45 27 1 3
## 106 46 27 0 1
## 107 46 87 0 2
## 108 46 6 1 3
## 109 47 27 0 1
## 110 47 87 0 2
## 111 47 6 1 3
## 112 48 14 0 1
## 113 48 110 0 2
## 114 48 50 1 3
## 115 49 19 0 1
## 116 49 110 0 2
## 117 49 147 1 3
## 118 50 8 0 1
## 119 50 71 0 2
## 120 50 159 1 3
## 121 51 8 0 1
## 122 51 71 0 2
## 123 51 159 1 3
## 124 52 53 0 1
## 125 52 101 0 2
## 126 52 127 1 3
## 127 53 7 0 1
## 128 53 101 0 2
## 129 53 127 1 3
## 130 54 6 0 1
## 131 54 13 0 2
## 132 54 33 1 3
## 133 55 6 0 1
## 134 55 13 0 2
## 135 55 33 1 3
## 136 56 72 0 1
## 137 56 83 0 2
## 138 56 128 1 3
## 139 57 72 0 1
## 140 57 83 0 2
## 141 57 128 1 3
## 142 58 22 0 1
## 143 58 18 0 2
## 144 58 154 1 3
## 145 59 22 0 1
## 146 59 18 0 2
## 147 59 154 1 3
## 148 60 11 0 1
## 149 60 6 0 2
## 150 60 33 1 3
## 151 61 11 0 1
## 152 61 6 0 2
## 153 61 33 1 3
## 154 62 11 0 1
## 155 62 6 0 2
## 156 62 33 1 3
## 157 63 28 0 1
## 158 63 39 0 2
## 159 63 98 1 3
## 160 64 28 0 1
## 161 64 39 0 2
## 162 64 98 1 3
## 163 65 28 0 1
## 164 65 39 0 2
## 165 65 98 1 3
## 166 66 62 0 1
## 167 66 99 0 2
## 168 66 80 1 3
## 169 67 62 0 1
## 170 67 99 0 2
## 171 67 80 1 3
## 172 68 62 0 1
## 173 68 99 0 2
## 174 68 80 1 3
## 175 69 34 0 1
## 176 69 82 1 3
## 177 70 34 0 1
## 178 70 82 1 3
## 179 71 34 0 1
## 180 71 82 1 3
## 181 72 29 0 1
## 182 72 64 0 2
## 183 72 44 1 3
## 184 73 29 0 1
## 185 73 64 0 2
## 186 73 44 1 3
## 187 74 69 0 1
## 188 74 5 0 2
## 189 74 8 1 3
## 190 75 69 0 1
## 191 75 5 0 2
## 192 75 8 1 3
## 193 76 69 0 1
## 194 76 5 0 2
## 195 76 8 1 3
## 196 77 50 0 1
## 197 77 18 0 2
## 198 77 49 1 3
## 199 78 50 0 1
## 200 78 18 0 2
## 201 78 49 1 3
## 202 79 12 0 1
## 203 79 20 0 2
## 204 79 144 1 3
## 205 80 12 0 1
## 206 80 20 0 2
## 207 80 144 1 3
## 208 81 42 0 1
## 209 81 5 0 2
## 210 81 148 1 3
## 211 82 42 0 1
## 212 82 5 0 2
## 213 82 148 1 3
## 214 83 51 0 1
## 215 83 39 0 2
## 216 83 128 1 3
## 217 84 50 0 1
## 218 84 48 0 2
## 219 84 77 1 3
## 220 85 50 0 1
## 221 85 48 0 2
## 222 85 77 1 3
## 223 86 47 0 1
## 224 86 93 0 2
## 225 86 115 1 3
## 226 87 47 0 1
## 227 87 93 0 2
## 228 87 115 1 3
## 229 88 1 0 1
## 230 88 60 0 2
## 231 88 143 1 3
## 232 89 1 0 1
## 233 89 60 0 2
## 234 89 143 1 3
## 235 90 75 0 1
## 236 90 92 0 2
## 237 90 142 1 3
## 238 91 75 0 1
## 239 91 92 0 2
## 240 91 142 1 3
## 241 92 26 0 1
## 242 93 26 0 1
## 243 94 26 0 1
## 244 95 69 0 1
## 245 95 5 0 2
## 246 95 133 1 3
## 247 96 15 0 1
## 248 96 108 0 2
## 249 96 39 1 3
## 250 97 15 0 1
## 251 97 108 0 2
## 252 97 39 1 3
## 253 98 52 0 1
## 254 98 75 0 2
## 255 98 125 1 3
## 256 99 52 0 1
## 257 99 75 0 2
## 258 99 125 1 3
## 259 100 43 0 1
## 260 100 9 0 2
## 261 100 106 1 3
## 262 101 43 0 1
## 263 101 9 0 2
## 264 101 106 1 3
## 265 102 34 0 1
## 266 102 139 1 3
## 267 103 34 0 1
## 268 103 139 1 3
## 269 104 69 0 1
## 270 104 31 0 2
## 271 104 4 1 3
## 272 105 69 0 1
## 273 105 31 0 2
## 274 105 4 1 3
## 275 106 7 0 1
## 276 106 120 0 2
## 277 106 84 1 3
## 278 107 51 0 1
## 279 107 89 0 2
## 280 107 39 1 3
## 281 108 20 0 1
## 282 108 12 0 2
## 283 108 13 1 3
## 284 109 26 0 1
## 285 110 26 0 1
## 286 111 31 0 1
## 287 111 69 0 2
## 288 111 120 1 3
## 289 112 31 0 1
## 290 112 69 0 2
## 291 112 120 1 3
## 292 113 30 0 1
## 293 113 32 0 2
## 294 113 131 1 3
## 295 114 34 0 1
## 296 114 102 0 2
## 297 114 144 1 3
## 298 115 48 0 1
## 299 115 113 0 2
## 300 115 39 1 3
## 301 116 33 0 1
## 302 116 97 0 2
## 303 116 6 1 3
## 304 117 38 0 1
## 305 117 97 0 2
## 306 117 6 1 3
## 307 118 33 0 1
## 308 118 41 0 2
## 309 118 31 1 3
## 310 119 33 0 1
## 311 119 41 0 2
## 312 119 31 1 3
## 313 120 35 0 1
## 314 120 30 0 2
## 315 120 148 1 3
## 316 121 35 0 1
## 317 121 30 0 2
## 318 121 148 1 3
## 319 122 43 0 1
## 320 122 111 0 2
## 321 122 101 1 3
## 322 123 68 0 1
## 323 123 101 0 2
## 324 123 80 1 3
## 325 124 12 0 1
## 326 124 108 0 2
## 327 124 87 1 3
## 328 125 9 0 1
## 329 125 72 1 3
## 330 126 49 0 1
## 331 126 72 1 3
## 332 127 52 0 1
## 333 127 104 0 2
## 334 127 153 1 3
## 335 128 22 0 1
## 336 128 83 0 2
## 337 128 125 1 3
## 338 129 33 0 1
## 339 129 155 1 3
## 340 130 22 0 1
## 341 130 153 1 3
## 342 131 11 0 1
## 343 131 75 0 2
## 344 131 93 1 3
## 345 132 7 0 1
## 346 132 150 1 3
## 347 133 50 0 1
## 348 133 91 0 2
## 349 133 107 1 3
## 350 134 11 0 1
## 351 134 93 1 3
## 352 135 10 0 1
## 353 135 95 1 3
## 354 136 18 0 1
## 355 136 62 1 3
## 356 137 36 0 1
## 357 137 88 0 2
## 358 137 148 1 3
## 359 138 33 0 1
## 360 138 75 0 2
## 361 138 133 1 3
## 362 139 33 0 1
## 363 139 75 0 2
## 364 139 133 1 3
## 365 140 33 0 1
## 366 140 4 0 2
## 367 140 133 1 3
## 368 141 33 0 1
## 369 141 4 0 2
## 370 141 133 1 3
## 371 142 69 0 1
## 372 142 46 0 2
## 373 142 127 1 3
## 374 143 17 0 1
## 375 143 47 0 2
## 376 143 82 1 3
## 377 144 46 0 1
## 378 144 81 1 3
## 379 145 46 0 1
## 380 145 9 1 3
## 381 146 46 0 1
## 382 146 49 1 3
## 383 147 61 0 1
## 384 147 63 1 3
## 385 148 61 0 1
## 386 148 63 1 3
## 387 149 39 0 1
## 388 149 136 1 3
## 389 150 46 0 1
## 390 150 127 1 3
## 391 151 28 0 1
## 392 152 65 0 1
## 393 152 102 1 3
## 394 153 65 0 1
## 395 153 102 1 3
## 396 154 65 0 1
## 397 154 102 1 3
## 398 155 66 0 1
## 399 155 18 1 3
## 400 156 66 0 1
## 401 156 18 1 3
## 402 157 66 0 1
## 403 157 18 1 3
## 404 158 67 0 1
## 405 158 125 1 3
## 406 159 67 0 1
## 407 159 125 1 3
## 408 160 67 0 1
## 409 160 125 1 3
## 410 161 50 0 1
## 411 161 51 0 2
## 412 161 119 1 3
## 413 162 50 0 1
## 414 162 51 0 2
## 415 162 119 1 3
## 416 163 15 0 1
## 417 163 51 0 2
## 418 163 110 1 3
## 419 164 15 0 1
## 420 164 51 0 2
## 421 164 110 1 3
## 422 165 68 0 1
## 423 165 48 0 2
## 424 165 155 1 3
## 425 166 68 0 1
## 426 166 48 0 2
## 427 166 89 1 3
## 428 167 68 0 1
## 429 167 15 0 2
## 430 167 97 1 3
## 431 168 68 0 1
## 432 168 15 0 2
## 433 168 97 1 3
## 434 169 39 0 1
## 435 169 151 1 3
## 436 170 10 0 1
## 437 170 35 0 2
## 438 170 11 1 3
## 439 171 10 0 1
## 440 171 35 0 2
## 441 171 11 1 3
## 442 172 9 0 1
## 443 172 31 1 3
## 444 173 56 0 1
## 445 173 98 0 2
## 446 173 132 1 3
## 447 174 56 0 1
## 448 174 172 0 2
## 449 174 132 1 3
## 450 175 55 0 1
## 451 175 32 0 2
## 452 175 105 1 3
## 453 176 55 0 1
## 454 176 32 0 2
## 455 176 105 1 3
## 456 177 28 0 1
## 457 177 48 0 2
## 458 177 156 1 3
## 459 178 28 0 1
## 460 178 48 0 2
## 461 178 156 1 3
## 462 179 9 0 1
## 463 179 57 1 3
## 464 180 9 0 1
## 465 180 57 1 3
## 466 181 9 0 1
## 467 181 57 1 3
## 468 182 34 0 1
## 469 182 131 1 3
## 470 183 47 0 1
## 471 183 37 0 2
## 472 183 157 1 3
## 473 184 47 0 1
## 474 184 37 0 2
## 475 184 157 1 3
## 476 185 5 0 1
## 477 185 69 0 2
## 478 185 155 1 3
## 479 186 11 0 1
## 480 186 6 0 2
## 481 186 2 1 3
## 482 187 34 0 1
## 483 187 102 0 2
## 484 187 151 1 3
## 485 188 34 0 1
## 486 188 102 0 2
## 487 188 151 1 3
## 488 189 34 0 1
## 489 189 102 0 2
## 490 189 151 1 3
## 491 190 50 0 1
## 492 190 53 0 2
## 493 190 92 1 3
## 494 191 34 0 1
## 495 191 94 0 2
## 496 191 48 1 3
## 497 192 34 0 1
## 498 192 94 0 2
## 499 192 48 1 3
## 500 193 3 0 1
## 501 193 14 0 2
## 502 193 119 1 3
## 503 194 6 0 1
## 504 194 11 0 2
## 505 194 109 1 3
## 506 195 6 0 1
## 507 195 11 0 2
## 508 195 109 1 3
## 509 196 28 0 1
## 510 196 156 1 3
## 511 197 28 0 1
## 512 197 39 1 3
## 513 198 15 0 1
## 514 198 105 0 2
## 515 198 158 1 3
## 516 199 12 0 1
## 517 199 20 0 2
## 518 199 144 1 3
## 519 200 26 0 1
## 520 201 26 0 1
## 521 202 23 0 1
## 522 202 140 1 3
## 523 203 39 0 1
## 524 203 48 0 2
## 525 203 157 1 3
## 526 204 5 0 1
## 527 204 142 1 3
## 528 205 5 0 1
## 529 205 142 1 3
## 530 206 32 0 1
## 531 206 50 0 2
## 532 206 155 1 3
## 533 207 52 0 1
## 534 207 8 0 2
## 535 207 17 1 3
## 536 208 69 0 1
## 537 208 5 0 2
## 538 208 125 1 3
## 539 209 22 0 1
## 540 209 50 0 2
## 541 209 155 1 3
## 542 210 22 0 1
## 543 210 95 0 2
## 544 210 155 1 3
## 545 211 38 0 1
## 546 211 33 0 2
## 547 211 22 1 3
## 548 212 68 0 1
## 549 212 101 0 2
## 550 212 135 1 3
## 551 213 5 0 1
## 552 213 82 0 2
## 553 213 126 1 3
## 554 214 68 0 1
## 555 214 62 0 2
## 556 214 153 1 3
## 557 215 39 0 1
## 558 215 51 0 2
## 559 215 124 1 3
## 560 216 53 0 1
## 561 216 95 0 2
## 562 216 118 1 3
## 563 217 62 0 1
## 564 217 95 0 2
## 565 217 127 1 3
## 566 218 40 0 1
## 567 218 49 0 2
## 568 218 133 1 3
## 569 219 40 0 1
## 570 219 49 0 2
## 571 219 133 1 3
## 572 220 12 0 1
## 573 220 81 0 2
## 574 220 47 1 3
## 575 221 12 0 1
## 576 221 81 0 2
## 577 221 47 1 3
## 578 222 55 0 1
## 579 222 30 0 2
## 580 222 144 1 3
## 581 223 55 0 1
## 582 223 97 0 2
## 583 223 141 1 3
## 584 224 21 0 1
## 585 224 97 0 2
## 586 224 141 1 3
## 587 225 72 0 1
## 588 225 55 0 2
## 589 225 15 1 3
## 590 226 33 0 1
## 591 226 11 0 2
## 592 226 41 1 3
## 593 227 51 0 1
## 594 227 5 0 2
## 595 227 133 1 3
## 596 228 48 0 1
## 597 228 18 0 2
## 598 228 127 1 3
## 599 229 48 0 1
## 600 229 18 0 2
## 601 229 127 1 3
## 602 230 33 0 1
## 603 230 97 0 2
## 604 230 6 1 3
## 605 231 53 0 1
## 606 231 8 1 3
## 607 232 5 0 1
## 608 232 8 1 3
## 609 233 36 0 1
## 610 233 88 0 2
## 611 233 148 1 3
## 612 234 22 0 1
## 613 234 119 0 2
## 614 234 157 1 3
## 615 235 20 0 1
## 616 235 101 0 2
## 617 235 141 1 3
## 618 236 62 0 1
## 619 236 80 0 2
## 620 236 72 1 3
## 621 237 22 0 1
## 622 237 101 0 2
## 623 237 80 1 3
## 624 238 12 0 1
## 625 238 108 0 2
## 626 238 93 1 3
## 627 239 9 0 1
## 628 239 72 1 3
## 629 240 49 0 1
## 630 240 72 1 3
## 631 241 47 0 1
## 632 241 113 0 2
## 633 241 157 1 3
## 634 242 30 0 1
## 635 242 32 0 2
## 636 242 131 1 3
## 637 243 46 0 1
## 638 243 10 1 3
## 639 244 46 0 1
## 640 244 18 1 3
## 641 245 46 0 1
## 642 245 11 1 3
## 643 246 62 0 1
## 644 246 8 1 3
## 645 247 61 0 1
## 646 248 45 0 1
## 647 248 127 1 3
## 648 249 46 0 1
## 649 249 136 1 3
## 650 250 46 0 1
## 651 250 144 1 3
## 652 251 30 0 1
## 653 252 65 0 1
## 654 252 84 1 3
## 655 253 65 0 1
## 656 253 84 1 3
## 657 254 65 0 1
## 658 254 84 1 3
## 659 255 66 0 1
## 660 255 3 1 3
## 661 256 66 0 1
## 662 256 3 1 3
## 663 257 66 0 1
## 664 257 3 1 3
## 665 258 67 0 1
## 666 258 6 1 3
## 667 259 67 0 1
## 668 259 6 1 3
## 669 260 67 0 1
## 670 260 6 1 3
## 671 261 50 0 1
## 672 261 95 0 2
## 673 261 155 1 3
## 674 262 22 0 1
## 675 262 95 0 2
## 676 262 153 1 3
## 677 263 53 0 1
## 678 263 82 0 2
## 679 263 95 1 3
## 680 264 53 0 1
## 681 264 82 0 2
## 682 264 95 1 3
## 683 265 19 0 1
## 684 265 50 1 3
## 685 266 61 0 1
## 686 267 68 0 1
## 687 267 79 1 3
## 688 268 61 0 1
## 689 269 19 0 1
## 690 269 14 1 3
## 691 270 33 0 1
## 692 270 44 0 2
## 693 270 20 1 3
## 694 271 33 0 1
## 695 271 44 0 2
## 696 271 20 1 3
## 697 272 33 0 1
## 698 272 44 0 2
## 699 272 20 1 3
## 700 273 34 0 1
## 701 273 48 0 2
## 702 273 124 1 3
## 703 274 34 0 1
## 704 274 48 0 2
## 705 274 124 1 3
## 706 275 34 0 1
## 707 275 48 0 2
## 708 275 124 1 3
## 709 276 62 0 1
## 710 276 113 1 3
## 711 277 62 0 1
## 712 277 113 1 3
## 713 278 51 0 1
## 714 278 44 1 3
## 715 279 51 0 1
## 716 279 44 1 3
## 717 280 28 0 1
## 718 280 36 0 2
## 719 280 140 1 3
## 720 281 28 0 1
## 721 281 36 0 2
## 722 281 140 1 3
## 723 282 28 0 1
## 724 282 36 0 2
## 725 282 140 1 3
## 726 283 33 0 1
## 727 283 44 1 3
## 728 284 22 0 1
## 729 284 127 1 3
## 730 285 27 0 1
## 731 285 90 0 2
## 732 285 95 1 3
## 733 286 27 0 1
## 734 286 90 0 2
## 735 286 101 1 3
## 736 287 54 0 1
## 737 288 72 0 1
## 738 289 54 0 1
## 739 290 14 0 1
## 740 290 50 1 3
## 741 291 3 0 1
## 742 291 151 1 3
## 743 292 25 0 1
## 744 293 43 0 1
## 745 293 155 1 3
## 746 294 43 0 1
## 747 294 113 1 3
## 748 295 43 0 1
## 749 295 113 1 3
## 750 296 47 0 1
## 751 296 62 0 2
## 752 296 125 1 3
## 753 297 47 0 1
## 754 297 62 0 2
## 755 297 125 1 3
## 756 298 47 0 1
## 757 298 37 0 2
## 758 298 157 1 3
## 759 299 5 0 1
## 760 299 42 0 2
## 761 299 159 1 3
## 762 300 56 0 1
## 763 300 96 0 2
## 764 300 147 1 3
## 765 301 56 0 1
## 766 301 96 0 2
## 767 301 147 1 3
## 768 302 51 0 1
## 769 302 100 0 2
## 770 302 158 1 3
## 771 303 52 0 1
## 772 303 22 0 2
## 773 303 125 1 3
## 774 304 5 0 1
## 775 304 69 0 2
## 776 304 134 1 3
## 777 305 5 0 1
## 778 305 69 0 2
## 779 305 134 1 3
## 780 306 5 0 1
## 781 306 69 0 2
## 782 306 134 1 3
## 783 307 74 0 1
## 784 307 140 1 3
## 785 308 74 0 1
## 786 308 140 1 3
## 787 309 9 0 1
## 788 309 31 0 2
## 789 309 58 1 3
## 790 310 9 0 1
## 791 310 31 0 2
## 792 310 58 1 3
## 793 311 57 0 1
## 794 311 31 1 3
## 795 312 58 0 1
## 796 312 10 1 3
## 797 313 35 0 1
## 798 313 68 0 2
## 799 313 158 1 3
## 800 314 12 0 1
## 801 314 110 0 2
## 802 314 158 1 3
## 803 315 30 0 1
## 804 315 38 0 2
## 805 315 102 1 3
## 806 316 64 0 1
## 807 316 60 0 2
## 808 316 82 1 3
## 809 317 64 0 1
## 810 317 60 0 2
## 811 317 82 1 3
## 812 318 24 0 1
## 813 318 3 1 3
## 814 319 24 0 1
## 815 319 3 1 3
## 816 320 41 0 1
## 817 320 12 0 2
## 818 320 46 1 3
## 819 321 41 0 1
## 820 321 12 0 2
## 821 321 46 1 3
## 822 322 12 0 1
## 823 322 86 0 2
## 824 322 20 1 3
## 825 323 40 0 1
## 826 323 116 0 2
## 827 323 83 1 3
## 828 324 73 0 1
## 829 324 75 1 3
## 830 325 47 0 1
## 831 325 20 0 2
## 832 325 82 1 3
## 833 326 47 0 1
## 834 326 20 0 2
## 835 326 82 1 3
## 836 327 20 0 1
## 837 327 77 0 2
## 838 327 126 1 3
## 839 328 52 0 1
## 840 328 71 0 2
## 841 328 125 1 3
## 842 329 26 0 1
## 843 330 26 0 1
## 844 331 8 0 1
## 845 331 11 1 3
## 846 332 8 0 1
## 847 332 11 1 3
## 848 333 30 0 1
## 849 333 13 1 3
## 850 334 30 0 1
## 851 334 13 1 3
## 852 335 17 0 1
## 853 335 137 1 3
## 854 336 61 0 1
## 855 336 151 1 3
## 856 337 26 0 1
## 857 338 26 0 1
## 858 339 12 0 1
## 859 339 107 0 2
## 860 339 93 1 3
## 861 340 12 0 1
## 862 340 107 0 2
## 863 340 93 1 3
## 864 341 52 0 1
## 865 341 75 0 2
## 866 341 91 1 3
## 867 342 52 0 1
## 868 342 75 0 2
## 869 342 91 1 3
## 870 343 26 0 1
## 871 344 26 0 1
## 872 345 21 0 1
## 873 345 114 1 3
## 874 346 21 0 1
## 875 346 114 1 3
## 876 347 4 0 1
## 877 347 33 1 3
## 878 348 4 0 1
## 879 348 33 1 3
## 880 349 33 0 1
## 881 349 12 0 2
## 882 349 91 1 3
## 883 350 63 0 1
## 884 350 172 0 2
## 885 350 56 1 3
## 886 351 59 0 1
## 887 352 16 0 1
## 888 352 168 1 3
## 889 353 15 0 1
## 890 353 119 0 2
## 891 353 130 1 3
## 892 354 15 0 1
## 893 354 119 0 2
## 894 354 130 1 3
## 895 355 26 0 1
## 896 355 119 1 3
## 897 356 46 0 1
## 898 356 119 1 3
## 899 357 34 0 1
## 900 357 94 0 2
## 901 357 139 1 3
## 902 358 26 0 1
## 903 359 46 0 1
## 904 359 105 0 2
## 905 359 154 1 3
## 906 360 23 0 1
## 907 360 140 1 3
## 908 361 39 0 1
## 909 361 115 0 2
## 910 361 141 1 3
## 911 362 39 0 1
## 912 362 115 0 2
## 913 362 141 1 3
## 914 363 47 0 1
## 915 363 115 0 2
## 916 363 12 1 3
## 917 364 47 0 1
## 918 364 115 0 2
## 919 364 12 1 3
## 920 365 47 0 1
## 921 365 115 0 2
## 922 365 12 1 3
## 923 366 75 0 1
## 924 366 155 1 3
## 925 367 33 0 1
## 926 367 41 1 3
## 927 368 33 0 1
## 928 368 93 1 3
## 929 369 33 0 1
## 930 369 69 0 2
## 931 369 5 1 3
## 932 370 33 0 1
## 933 370 93 1 3
## 934 371 69 0 1
## 935 371 125 1 3
## 936 372 69 0 1
## 937 372 142 1 3
## 938 373 22 0 1
## 939 373 153 1 3
## 940 374 29 0 1
## 941 374 135 1 3
## 942 375 29 0 1
## 943 375 135 1 3
## 944 376 29 0 1
## 945 376 135 1 3
## 946 377 29 0 1
## 947 377 5 1 3
## 948 378 29 0 1
## 949 378 115 1 3
## 950 379 29 0 1
## 951 379 135 1 3
## 952 380 26 0 1
## 953 381 26 0 1
## 954 382 2 0 1
## 955 383 70 0 1
## 956 384 76 0 1
## 957 385 32 0 1
## 958 386 46 0 1
## 959 387 65 0 1
## 960 387 75 1 3
## 961 388 65 0 1
## 962 388 75 1 3
## 963 389 65 0 1
## 964 389 75 1 3
## 965 390 66 0 1
## 966 390 89 1 3
## 967 391 66 0 1
## 968 391 89 1 3
## 969 392 66 0 1
## 970 392 89 1 3
## 971 393 67 0 1
## 972 393 128 1 3
## 973 394 67 0 1
## 974 394 128 1 3
## 975 395 67 0 1
## 976 395 128 1 3
## 977 396 51 0 1
## 978 396 120 1 3
## 979 397 22 0 1
## 980 397 120 1 3
## 981 398 22 0 1
## 982 398 120 1 3
## 983 399 86 0 1
## 984 399 109 0 2
## 985 399 141 1 3
## 986 400 86 0 1
## 987 400 109 0 2
## 988 400 141 1 3
## 989 401 61 0 1
## 990 401 50 1 3
## 991 402 68 0 1
## 992 402 101 1 3
## 993 403 79 0 1
## 994 403 22 0 2
## 995 403 62 1 3
## 996 404 79 0 1
## 997 404 22 0 2
## 998 404 62 1 3
## 999 405 79 0 1
## 1000 405 22 0 2
## 1001 405 62 1 3
## 1002 406 30 0 1
## 1003 406 38 0 2
## 1004 406 102 1 3
## 1005 407 30 0 1
## 1006 407 38 0 2
## 1007 407 101 1 3
## 1008 408 104 0 1
## 1009 408 125 1 3
## 1010 409 104 0 1
## 1011 409 125 1 3
## 1012 410 5 0 1
## 1013 410 43 1 3
## 1014 411 5 0 1
## 1015 411 43 1 3
## 1016 412 61 0 1
## 1017 412 142 1 3
## 1018 413 107 0 1
## 1019 413 142 1 3
## 1020 414 68 0 1
## 1021 414 110 1 3
## 1022 415 118 0 1
## 1023 415 55 1 3
## 1024 416 46 0 1
## 1025 416 127 1 3
## 1026 417 50 0 1
## 1027 417 53 0 2
## 1028 417 10 1 3
## 1029 418 33 0 1
## 1030 418 41 1 3
## 1031 419 33 0 1
## 1032 419 41 1 3
## 1033 420 34 0 1
## 1034 421 122 0 1
## 1035 422 60 0 1
## 1036 422 114 0 2
## 1037 422 159 1 3
## 1038 423 60 0 1
## 1039 423 114 0 2
## 1040 423 159 1 3
## 1041 424 101 0 1
## 1042 424 53 0 2
## 1043 424 92 1 3
## 1044 425 106 0 1
## 1045 425 84 0 2
## 1046 425 138 1 3
## 1047 426 106 0 1
## 1048 426 84 0 2
## 1049 426 138 1 3
## 1050 427 50 0 1
## 1051 427 103 0 2
## 1052 427 7 1 3
## 1053 428 56 0 1
## 1054 428 103 0 2
## 1055 428 7 1 3
## 1056 429 26 0 1
## 1057 430 15 0 1
## 1058 430 105 0 2
## 1059 430 153 1 3
## 1060 431 7 0 1
## 1061 431 20 0 2
## 1062 431 51 1 3
## 1063 432 47 0 1
## 1064 432 20 0 2
## 1065 432 128 1 3
## 1066 433 26 0 1
## 1067 434 1 0 1
## 1068 434 106 0 2
## 1069 434 51 1 3
## 1070 435 1 0 1
## 1071 435 106 0 2
## 1072 435 51 1 3
## 1073 436 26 0 1
## 1074 436 85 0 2
## 1075 436 134 1 3
## 1076 437 26 0 1
## 1077 437 85 0 2
## 1078 437 134 1 3
## 1079 438 5 0 1
## 1080 438 69 0 2
## 1081 438 155 1 3
## 1082 439 43 0 1
## 1083 439 111 0 2
## 1084 439 101 1 3
## 1085 440 30 0 1
## 1086 440 32 0 2
## 1087 440 132 1 3
## 1088 441 51 0 1
## 1089 441 77 0 2
## 1090 441 145 1 3
## 1091 442 46 0 1
## 1092 442 151 1 3
## 1093 443 8 0 1
## 1094 443 24 1 3
## 1095 444 8 0 1
## 1096 444 24 1 3
## 1097 445 8 0 1
## 1098 445 24 1 3
## 1099 446 53 0 1
## 1100 446 47 0 2
## 1101 446 82 1 3
## 1102 447 80 0 1
## 1103 447 39 0 2
## 1104 447 158 1 3
## 1105 448 80 0 1
## 1106 448 39 0 2
## 1107 448 154 1 3
## 1108 449 45 0 1
## 1109 449 159 1 3
## 1110 450 45 0 1
## 1111 450 159 1 3
## 1112 451 4 0 1
## 1113 451 97 0 2
## 1114 451 51 1 3
## 1115 452 4 0 1
## 1116 452 97 0 2
## 1117 452 51 1 3
## 1118 453 107 0 1
## 1119 453 87 0 2
## 1120 453 143 1 3
## 1121 454 107 0 1
## 1122 454 87 0 2
## 1123 454 143 1 3
## 1124 455 26 0 1
## 1125 456 33 0 1
## 1126 456 114 0 2
## 1127 456 41 1 3
## 1128 457 33 0 1
## 1129 457 114 0 2
## 1130 457 41 1 3
## 1131 458 33 0 1
## 1132 458 11 0 2
## 1133 458 41 1 3
## 1134 459 117 0 1
## 1135 459 43 1 3
## 1136 460 117 0 1
## 1137 460 43 1 3
## 1138 461 46 0 1
## 1139 461 124 1 3
## 1140 462 42 0 1
## 1141 462 5 0 2
## 1142 462 148 1 3
## 1143 463 20 0 1
## 1144 463 12 0 2
## 1145 463 13 1 3
## 1146 464 31 0 1
## 1147 464 116 0 2
## 1148 464 120 1 3
## 1149 465 34 0 1
## 1150 465 102 0 2
## 1151 465 144 1 3
## 1152 466 78 0 1
## 1153 466 72 1 3
## 1154 467 49 0 1
## 1155 467 72 1 3
## 1156 468 55 0 1
## 1157 468 32 0 2
## 1158 468 105 1 3
## 1159 469 3 0 1
## 1160 469 110 0 2
## 1161 469 119 1 3
## 1162 470 102 0 1
## 1163 470 34 1 3
## 1164 471 81 0 1
## 1165 471 115 1 3
## 1166 472 52 0 1
## 1167 472 8 0 2
## 1168 472 90 1 3
## 1169 473 12 0 1
## 1170 473 81 0 2
## 1171 473 47 1 3
## 1172 474 91 0 1
## 1173 474 88 0 2
## 1174 474 148 1 3
## 1175 475 80 0 1
## 1176 475 154 1 3
## 1177 476 5 0 1
## 1178 476 42 0 2
## 1179 476 159 1 3
## 1180 477 46 0 1
## 1181 477 119 1 3
## 1182 478 81 0 1
## 1183 478 130 1 3
## 1184 479 26 0 1
## 1185 480 26 0 1
## 1186 481 26 0 1
## 1187 482 26 0 1
## 1188 483 46 0 1
## 1189 483 140 1 3
## 1190 484 46 0 1
## 1191 484 140 1 3
## 1192 485 18 0 1
## 1193 485 49 1 3
## 1194 486 112 0 1
## 1195 487 46 0 1
## 1196 487 140 1 3
## 1197 488 26 0 1
## 1198 489 93 0 1
## 1199 490 93 0 1
## 1200 491 123 0 1
## 1201 492 30 0 1
## 1202 493 121 0 1
## 1203 494 162 0 1
## 1204 495 65 0 1
## 1205 495 126 1 3
## 1206 496 65 0 1
## 1207 496 126 1 3
## 1208 497 65 0 1
## 1209 497 126 1 3
## 1210 498 66 0 1
## 1211 498 47 1 3
## 1212 499 66 0 1
## 1213 499 47 1 3
## 1214 500 66 0 1
## 1215 500 120 1 3
## 1216 501 67 0 1
## 1217 501 75 1 3
## 1218 502 67 0 1
## 1219 502 75 1 3
## 1220 503 67 0 1
## 1221 503 75 1 3
## 1222 504 50 0 1
## 1223 504 51 0 2
## 1224 504 148 1 3
## 1225 505 35 0 1
## 1226 505 51 0 2
## 1227 505 148 1 3
## 1228 506 72 0 1
## 1229 506 53 0 2
## 1230 506 50 1 3
## 1231 507 22 0 1
## 1232 507 146 0 2
## 1233 507 113 1 3
## 1234 508 22 0 1
## 1235 508 146 0 2
## 1236 508 113 1 3
## 1237 509 7 0 1
## 1238 509 84 0 2
## 1239 509 158 1 3
## 1240 510 7 0 1
## 1241 510 84 0 2
## 1242 510 158 1 3
## 1243 511 82 0 1
## 1244 511 65 1 3
## 1245 512 82 0 1
## 1246 512 65 1 3
## 1247 513 82 0 1
## 1248 513 66 1 3
## 1249 514 82 0 1
## 1250 514 66 1 3
## 1251 515 82 0 1
## 1252 515 67 1 3
## 1253 516 82 0 1
## 1254 516 67 1 3
## 1255 517 108 0 1
## 1256 517 28 0 2
## 1257 517 140 1 3
## 1258 518 108 0 1
## 1259 518 28 0 2
## 1260 518 140 1 3
## 1261 519 145 0 1
## 1262 519 105 0 2
## 1263 519 79 1 3
## 1264 520 145 0 1
## 1265 520 105 0 2
## 1266 520 79 1 3
## 1267 521 145 0 1
## 1268 521 105 0 2
## 1269 521 79 1 3
## 1270 522 31 0 1
## 1271 522 78 0 2
## 1272 522 157 1 3
## 1273 523 31 0 1
## 1274 523 78 0 2
## 1275 523 157 1 3
## 1276 524 5 0 1
## 1277 524 159 1 3
## 1278 525 5 0 1
## 1279 525 159 1 3
## 1280 526 5 0 1
## 1281 526 159 1 3
## 1282 527 109 0 1
## 1283 527 103 0 2
## 1284 527 86 1 3
## 1285 528 109 0 1
## 1286 528 103 0 2
## 1287 528 86 1 3
## 1288 529 146 0 1
## 1289 529 159 0 2
## 1290 529 104 1 3
## 1291 530 146 0 1
## 1292 530 159 0 2
## 1293 530 104 1 3
## 1294 531 131 0 1
## 1295 531 144 0 2
## 1296 531 103 1 3
## 1297 532 62 0 1
## 1298 532 125 0 2
## 1299 532 89 1 3
## 1300 533 62 0 1
## 1301 533 125 0 2
## 1302 533 89 1 3
## 1303 534 62 0 1
## 1304 534 125 0 2
## 1305 534 89 1 3
## 1306 535 33 0 1
## 1307 535 93 0 2
## 1308 535 11 1 3
## 1309 536 33 0 1
## 1310 536 93 0 2
## 1311 536 11 1 3
## 1312 537 33 0 1
## 1313 537 143 0 2
## 1314 537 11 1 3
## 1315 538 62 0 1
## 1316 538 39 0 2
## 1317 538 104 1 3
## 1318 539 5 0 1
## 1319 539 39 0 2
## 1320 539 104 1 3
## 1321 540 68 0 1
## 1322 540 34 0 2
## 1323 540 142 1 3
## 1324 541 102 0 1
## 1325 541 34 0 2
## 1326 541 142 1 3
## 1327 542 68 0 1
## 1328 542 34 0 2
## 1329 542 142 1 3
## 1330 543 38 0 1
## 1331 543 68 0 2
## 1332 543 3 1 3
## 1333 544 38 0 1
## 1334 544 68 0 2
## 1335 544 3 1 3
## 1336 545 38 0 1
## 1337 545 68 0 2
## 1338 545 3 1 3
## 1339 546 158 0 1
## 1340 546 151 0 2
## 1341 546 34 1 3
## 1342 547 158 0 1
## 1343 547 151 0 2
## 1344 547 34 1 3
## 1345 548 34 0 1
## 1346 548 20 0 2
## 1347 548 102 1 3
## 1348 549 34 0 1
## 1349 549 20 0 2
## 1350 549 102 1 3
## 1351 550 120 0 1
## 1352 550 91 0 2
## 1353 550 104 1 3
## 1354 551 22 0 1
## 1355 551 153 0 2
## 1356 551 83 1 3
## 1357 552 22 0 1
## 1358 552 153 0 2
## 1359 552 83 1 3
## 1360 553 22 0 1
## 1361 553 153 0 2
## 1362 553 83 1 3
## 1363 554 55 0 1
## 1364 554 39 1 3
## 1365 555 125 0 1
## 1366 555 161 1 3
## 1367 556 11 0 1
## 1368 556 34 0 2
## 1369 556 114 1 3
## 1370 557 5 0 1
## 1371 557 75 0 2
## 1372 557 133 1 3
## 1373 558 5 0 1
## 1374 558 75 0 2
## 1375 558 133 1 3
## 1376 559 61 0 1
## 1377 559 153 0 2
## 1378 559 22 1 3
## 1379 560 61 0 1
## 1380 560 153 0 2
## 1381 560 22 1 3
## 1382 561 147 0 1
## 1383 561 98 0 2
## 1384 561 110 1 3
## 1385 562 152 0 1
## 1386 563 152 0 1
## 1387 564 116 0 1
## 1388 564 5 0 2
## 1389 564 33 1 3
## 1390 565 116 0 1
## 1391 565 5 0 2
## 1392 565 33 1 3
## 1393 566 129 0 1
## 1394 567 129 0 1
## 1395 568 1 0 1
## 1396 568 60 0 2
## 1397 568 106 1 3
## 1398 569 1 0 1
## 1399 569 133 0 2
## 1400 569 106 1 3
## 1401 570 149 0 1
## 1402 571 149 0 1
## 1403 572 56 0 1
## 1404 572 101 0 2
## 1405 572 92 1 3
## 1406 573 56 0 1
## 1407 573 101 0 2
## 1408 573 92 1 3
## 1409 574 119 0 1
## 1410 574 172 0 2
## 1411 574 23 1 3
## 1412 575 119 0 1
## 1413 575 172 0 2
## 1414 575 23 1 3
## 1415 576 119 0 1
## 1416 576 172 0 2
## 1417 576 23 1 3
## 1418 577 142 0 1
## 1419 577 98 0 2
## 1420 577 144 1 3
## 1421 578 142 0 1
## 1422 578 98 0 2
## 1423 578 144 1 3
## 1424 579 142 0 1
## 1425 579 98 0 2
## 1426 579 144 1 3
## 1427 580 51 0 1
## 1428 580 145 0 2
## 1429 580 93 1 3
## 1430 581 51 0 1
## 1431 581 145 0 2
## 1432 581 93 1 3
## 1433 582 115 0 1
## 1434 582 133 1 3
## 1435 583 115 0 1
## 1436 583 133 1 3
## 1437 584 115 0 1
## 1438 584 133 1 3
## 1439 585 34 0 1
## 1440 585 157 0 2
## 1441 585 32 1 3
## 1442 586 34 0 1
## 1443 586 157 0 2
## 1444 586 32 1 3
## 1445 587 9 0 1
## 1446 587 78 1 3
## 1447 588 68 0 1
## 1448 588 61 0 2
## 1449 588 99 1 3
## 1450 589 68 0 1
## 1451 589 75 0 2
## 1452 589 142 1 3
## 1453 590 27 0 1
## 1454 590 144 1 3
## 1455 591 27 0 1
## 1456 591 144 1 3
## 1457 592 11 0 1
## 1458 592 130 0 2
## 1459 592 6 1 3
## 1460 593 11 0 1
## 1461 593 130 0 2
## 1462 593 6 1 3
## 1463 594 131 0 1
## 1464 594 93 0 2
## 1465 594 144 1 3
## 1466 595 14 0 1
## 1467 595 127 0 2
## 1468 595 68 1 3
## 1469 596 14 0 1
## 1470 596 127 0 2
## 1471 596 68 1 3
## 1472 597 160 0 1
## 1473 598 160 0 1
## 1474 598 107 1 3
## 1475 599 57 0 1
## 1476 599 58 0 2
## 1477 599 29 1 3
## 1478 600 57 0 1
## 1479 600 58 0 2
## 1480 600 29 1 3
## 1481 601 57 0 1
## 1482 601 58 0 2
## 1483 601 29 1 3
## 1484 602 26 0 1
## 1485 603 26 0 1
## 1486 604 26 0 1
## 1487 605 140 0 1
## 1488 605 28 0 2
## 1489 605 148 1 3
## 1490 606 140 0 1
## 1491 606 28 0 2
## 1492 606 148 1 3
## 1493 607 18 0 1
## 1494 607 49 0 2
## 1495 607 151 1 3
## 1496 608 18 0 1
## 1497 608 49 0 2
## 1498 608 151 1 3
## 1499 609 18 0 1
## 1500 609 49 0 2
## 1501 609 151 1 3
## 1502 610 79 0 1
## 1503 610 104 0 2
## 1504 610 127 1 3
## 1505 611 79 0 1
## 1506 611 104 0 2
## 1507 611 127 1 3
## 1508 612 79 0 1
## 1509 612 104 0 2
## 1510 612 127 1 3
## 1511 613 81 0 1
## 1512 613 155 1 3
## 1513 614 81 0 1
## 1514 614 33 1 3
## 1515 615 26 0 1
## 1516 616 93 0 1
## 1517 616 75 0 2
## 1518 616 142 1 3
## 1519 617 93 0 1
## 1520 617 60 0 2
## 1521 617 84 1 3
## 1522 618 9 0 1
## 1523 618 7 0 2
## 1524 618 8 1 3
## 1525 619 39 0 1
## 1526 619 144 0 2
## 1527 619 120 1 3
## 1528 620 39 0 1
## 1529 620 144 0 2
## 1530 620 120 1 3
## 1531 621 24 0 1
## 1532 621 125 0 2
## 1533 621 104 1 3
## 1534 622 89 0 1
## 1535 622 103 0 2
## 1536 622 99 1 3
## 1537 623 89 0 1
## 1538 623 103 0 2
## 1539 623 99 1 3
## 1540 624 128 0 1
## 1541 624 39 0 2
## 1542 624 46 1 3
## 1543 625 128 0 1
## 1544 625 39 0 2
## 1545 625 46 1 3
## 1546 626 120 0 1
## 1547 626 157 0 2
## 1548 626 43 1 3
## 1549 627 51 0 1
## 1550 627 125 0 2
## 1551 627 55 1 3
## 1552 628 51 0 1
## 1553 628 125 0 2
## 1554 628 128 1 3
## 1555 629 145 0 1
## 1556 629 142 0 2
## 1557 629 133 1 3
## 1558 630 145 0 1
## 1559 630 142 0 2
## 1560 630 133 1 3
## 1561 631 82 0 1
## 1562 631 18 0 2
## 1563 631 73 1 3
## 1564 632 68 0 1
## 1565 632 55 0 2
## 1566 632 54 1 3
## 1567 633 55 0 1
## 1568 634 55 0 1
## 1569 635 26 0 1
## 1570 636 49 0 1
## 1571 636 68 1 3
## 1572 637 49 0 1
## 1573 637 68 1 3
## 1574 638 154 0 1
## 1575 639 154 0 1
## 1576 640 154 0 1
## 1577 641 158 0 1
## 1578 641 128 1 3
## 1579 642 158 0 1
## 1580 642 128 1 3
## 1581 643 163 0 1
## 1582 644 164 0 1
## 1583 645 159 0 1
## 1584 645 125 1 3
## 1585 646 46 0 1
## 1586 647 154 0 1
## 1587 648 32 0 1
## 1588 649 88 0 1
## 1589 650 65 0 1
## 1590 650 171 1 3
## 1591 651 65 0 1
## 1592 651 171 1 3
## 1593 652 65 0 1
## 1594 652 171 1 3
## 1595 653 66 0 1
## 1596 653 170 1 3
## 1597 654 66 0 1
## 1598 654 170 1 3
## 1599 655 66 0 1
## 1600 655 170 1 3
## 1601 656 67 0 1
## 1602 656 168 1 3
## 1603 657 67 0 1
## 1604 657 168 1 3
## 1605 658 67 0 1
## 1606 658 168 1 3
## 1607 659 53 0 1
## 1608 659 167 0 2
## 1609 659 37 1 3
## 1610 660 53 0 1
## 1611 660 167 0 2
## 1612 660 37 1 3
## 1613 661 145 0 1
## 1614 661 177 1 3
## 1615 662 49 0 1
## 1616 662 177 1 3
## 1617 663 49 0 1
## 1618 663 177 1 3
## 1619 664 19 0 1
## 1620 664 14 0 2
## 1621 664 132 1 3
## 1622 665 61 0 1
## 1623 665 132 1 3
## 1624 666 19 0 1
## 1625 666 14 0 2
## 1626 666 132 1 3
## 1627 667 79 0 1
## 1628 667 127 0 2
## 1629 667 153 1 3
## 1630 668 79 0 1
## 1631 668 127 0 2
## 1632 668 153 1 3
## 1633 669 166 0 1
## 1634 669 180 1 3
## 1635 670 166 0 1
## 1636 670 180 1 3
## 1637 671 166 0 1
## 1638 671 180 1 3
## 1639 672 157 0 1
## 1640 672 179 1 3
## 1641 673 157 0 1
## 1642 673 179 1 3
## 1643 674 89 0 1
## 1644 674 104 0 2
## 1645 674 113 1 3
## 1646 675 89 0 1
## 1647 675 104 0 2
## 1648 675 113 1 3
## 1649 676 169 0 1
## 1650 677 51 0 1
## 1651 677 151 0 2
## 1652 677 20 1 3
## 1653 678 51 0 1
## 1654 678 151 0 2
## 1655 678 158 1 3
## 1656 679 99 0 1
## 1657 680 99 0 1
## 1658 681 176 0 1
## 1659 682 131 0 1
## 1660 682 165 1 3
## 1661 683 131 0 1
## 1662 683 165 1 3
## 1663 684 175 0 1
## 1664 684 84 1 3
## 1665 685 175 0 1
## 1666 685 84 1 3
## 1667 686 126 0 1
## 1668 686 21 0 2
## 1669 686 151 1 3
## 1670 687 126 0 1
## 1671 687 21 0 2
## 1672 687 151 1 3
## 1673 688 181 0 1
## 1674 688 97 0 2
## 1675 688 124 1 3
## 1676 689 181 0 1
## 1677 689 97 0 2
## 1678 689 124 1 3
## 1679 690 38 0 1
## 1680 690 143 0 2
## 1681 690 91 1 3
## 1682 691 38 0 1
## 1683 691 143 0 2
## 1684 691 91 1 3
## 1685 692 178 0 1
## 1686 693 178 0 1
## 1687 694 87 0 1
## 1688 694 8 0 2
## 1689 694 94 1 3
## 1690 695 87 0 1
## 1691 695 8 0 2
## 1692 695 94 1 3
## 1693 696 173 0 1
## 1694 696 5 1 3
## 1695 697 173 0 1
## 1696 697 69 1 3
## 1697 698 174 0 1
## 1698 698 117 1 3
## 1699 699 174 0 1
## 1700 699 117 1 3
## 1701 700 56 0 1
## 1702 700 182 1 3
## 1703 701 7 0 1
## 1704 701 84 0 2
## 1705 701 104 1 3
## 1706 702 167 0 1
## 1707 702 53 0 2
## 1708 702 57 1 3
## 1709 703 29 0 1
## 1710 703 5 1 3
## 1711 704 157 0 1
## 1712 704 93 0 2
## 1713 704 183 1 3
## 1714 705 157 0 1
## 1715 705 93 0 2
## 1716 705 183 1 3
## 1717 706 157 0 1
## 1718 706 93 0 2
## 1719 706 183 1 3
## 1720 707 158 0 1
## 1721 707 170 1 3
## 1722 708 30 0 1
## 1723 708 119 0 2
## 1724 708 139 1 3
## 1725 709 30 0 1
## 1726 709 119 0 2
## 1727 709 139 1 3
## 1728 710 53 0 1
## 1729 710 119 0 2
## 1730 710 15 1 3
## 1731 711 53 0 1
## 1732 711 119 0 2
## 1733 711 15 1 3
## 1734 712 20 0 1
## 1735 712 115 0 2
## 1736 712 5 1 3
## 1737 713 20 0 1
## 1738 713 115 0 2
## 1739 713 5 1 3
## 1740 714 119 0 1
## 1741 714 151 0 2
## 1742 714 140 1 3
## 1743 715 119 0 1
## 1744 715 151 0 2
## 1745 715 140 1 3
## 1746 716 187 0 1
## 1747 717 186 0 1
## 1748 718 188 0 1
## 1749 719 29 0 1
## 1750 720 170 0 1
## 1751 721 11 0 1
## 1752 10001 46 0 1
## 1753 10002 46 0 1
## 1754 10003 46 0 1
## 1755 10004 107 0 1
## 1756 10004 142 1 3
## 1757 10005 107 0 1
## 1758 10005 142 1 3
## 1759 10006 32 0 1
## 1760 10007 26 0 1
## 1761 10008 26 0 1
## 1762 10009 26 0 1
## 1763 10010 26 0 1
## 1764 10011 26 0 1
## 1765 10012 26 0 1
## 1766 10013 59 0 1
## 1767 10014 59 0 1
## 1768 10015 59 0 1
## 1769 10016 69 0 1
## 1770 10016 91 0 2
## 1771 10016 104 1 3
## 1772 10017 125 0 1
## 1773 10017 161 1 3
## 1774 10018 32 0 1
## 1775 10019 144 0 1
## 1776 10020 10 0 1
## 1777 10021 22 0 1
## 1778 10022 164 0 1
## 1779 10023 163 0 1
## 1780 10024 154 0 1
## 1781 10025 51 0 1
## 1782 10025 151 0 2
## 1783 10025 172 1 3
## 1784 10026 176 0 1
## 1785 10027 53 0 1
## 1786 10027 119 0 2
## 1787 10027 15 1 3
## 1788 10028 53 0 1
## 1789 10028 119 0 2
## 1790 10028 15 1 3
## 1791 10029 53 0 1
## 1792 10029 119 0 2
## 1793 10029 15 1 3
## 1794 10030 53 0 1
## 1795 10030 119 0 2
## 1796 10030 15 1 3
## 1797 10031 53 0 1
## 1798 10031 119 0 2
## 1799 10031 15 1 3
## 1800 10032 53 0 1
## 1801 10032 119 0 2
## 1802 10032 15 1 3
## 1803 10033 47 0 1
## 1804 10034 181 0 1
## 1805 10035 70 0 1
## 1806 10036 178 0 1
## 1807 10037 36 0 1
## 1808 10038 23 0 1
## 1809 10039 185 0 1
## 1810 10040 184 0 1
## 1811 10041 104 0 1
## 1812 10042 181 0 1
## 1813 10043 80 0 1
## 1814 10044 15 0 1
## 1815 10045 104 0 1
## 1816 10046 101 0 1
## 1817 10047 92 0 1
## 1818 10048 94 0 1
## 1819 10049 45 0 1
## 1820 10050 3 0 1
## 1821 10051 182 0 1
## 1822 10052 37 0 1
## 1823 10053 111 0 1
## 1824 10054 74 0 1
## 1825 10055 22 0 1
## 1826 10056 158 0 1
## 1827 10057 156 0 1
## 1828 10058 159 0 1
## 1829 10059 91 0 1
## 1830 10060 117 0 1
## 1831 10061 166 0 1
## 1832 10061 180 1 3
## 1833 10062 26 0 1
## 1834 10063 26 0 1
## 1835 10064 33 0 1
## 1836 10065 31 0 1
## 1837 10066 156 0 1
## 1838 10067 182 0 1
## 1839 10068 39 0 1
## 1840 10069 131 0 1
## 1841 10070 173 0 1
## 1842 10071 75 0 1
## 1843 10072 159 0 1
## 1844 10073 99 0 1
## 1845 10074 174 0 1
## 1846 10075 156 0 1
## 1847 10076 181 0 1
## 1848 10077 189 0 1
## 1849 10078 190 0 1
## 1850 10079 191 0 1
## 1851 10080 9 0 1
## 1852 10080 31 1 3
## 1853 10081 9 0 1
## 1854 10081 31 1 3
## 1855 10082 9 0 1
## 1856 10082 31 1 3
## 1857 10083 9 0 1
## 1858 10083 31 1 3
## 1859 10084 9 0 1
## 1860 10084 31 1 3
## 1861 10085 9 0 1
## 1862 10085 31 1 3
## 1863 10086 170 0 1
## 1864 10087 125 0 1
## 1865 10088 113 0 1
## 1866 10089 184 0 1
## 1867 10090 91 0 1
dbGetQuery(pokemonDatabase, "
SELECT *
FROM abilities")
## id identifier generation_id is_main_series
## 1 1 stench 3 1
## 2 2 drizzle 3 1
## 3 3 speed-boost 3 1
## 4 4 battle-armor 3 1
## 5 5 sturdy 3 1
## 6 6 damp 3 1
## 7 7 limber 3 1
## 8 8 sand-veil 3 1
## 9 9 static 3 1
## 10 10 volt-absorb 3 1
## 11 11 water-absorb 3 1
## 12 12 oblivious 3 1
## 13 13 cloud-nine 3 1
## 14 14 compound-eyes 3 1
## 15 15 insomnia 3 1
## 16 16 color-change 3 1
## 17 17 immunity 3 1
## 18 18 flash-fire 3 1
## 19 19 shield-dust 3 1
## 20 20 own-tempo 3 1
## 21 21 suction-cups 3 1
## 22 22 intimidate 3 1
## 23 23 shadow-tag 3 1
## 24 24 rough-skin 3 1
## 25 25 wonder-guard 3 1
## 26 26 levitate 3 1
## 27 27 effect-spore 3 1
## 28 28 synchronize 3 1
## 29 29 clear-body 3 1
## 30 30 natural-cure 3 1
## 31 31 lightning-rod 3 1
## 32 32 serene-grace 3 1
## 33 33 swift-swim 3 1
## 34 34 chlorophyll 3 1
## 35 35 illuminate 3 1
## 36 36 trace 3 1
## 37 37 huge-power 3 1
## 38 38 poison-point 3 1
## 39 39 inner-focus 3 1
## 40 40 magma-armor 3 1
## 41 41 water-veil 3 1
## 42 42 magnet-pull 3 1
## 43 43 soundproof 3 1
## 44 44 rain-dish 3 1
## 45 45 sand-stream 3 1
## 46 46 pressure 3 1
## 47 47 thick-fat 3 1
## 48 48 early-bird 3 1
## 49 49 flame-body 3 1
## 50 50 run-away 3 1
## 51 51 keen-eye 3 1
## 52 52 hyper-cutter 3 1
## 53 53 pickup 3 1
## 54 54 truant 3 1
## 55 55 hustle 3 1
## 56 56 cute-charm 3 1
## 57 57 plus 3 1
## 58 58 minus 3 1
## 59 59 forecast 3 1
## 60 60 sticky-hold 3 1
## 61 61 shed-skin 3 1
## 62 62 guts 3 1
## 63 63 marvel-scale 3 1
## 64 64 liquid-ooze 3 1
## 65 65 overgrow 3 1
## 66 66 blaze 3 1
## 67 67 torrent 3 1
## 68 68 swarm 3 1
## 69 69 rock-head 3 1
## 70 70 drought 3 1
## 71 71 arena-trap 3 1
## 72 72 vital-spirit 3 1
## 73 73 white-smoke 3 1
## 74 74 pure-power 3 1
## 75 75 shell-armor 3 1
## 76 76 air-lock 3 1
## 77 77 tangled-feet 4 1
## 78 78 motor-drive 4 1
## 79 79 rivalry 4 1
## 80 80 steadfast 4 1
## 81 81 snow-cloak 4 1
## 82 82 gluttony 4 1
## 83 83 anger-point 4 1
## 84 84 unburden 4 1
## 85 85 heatproof 4 1
## 86 86 simple 4 1
## 87 87 dry-skin 4 1
## 88 88 download 4 1
## 89 89 iron-fist 4 1
## 90 90 poison-heal 4 1
## 91 91 adaptability 4 1
## 92 92 skill-link 4 1
## 93 93 hydration 4 1
## 94 94 solar-power 4 1
## 95 95 quick-feet 4 1
## 96 96 normalize 4 1
## 97 97 sniper 4 1
## 98 98 magic-guard 4 1
## 99 99 no-guard 4 1
## 100 100 stall 4 1
## 101 101 technician 4 1
## 102 102 leaf-guard 4 1
## 103 103 klutz 4 1
## 104 104 mold-breaker 4 1
## 105 105 super-luck 4 1
## 106 106 aftermath 4 1
## 107 107 anticipation 4 1
## 108 108 forewarn 4 1
## 109 109 unaware 4 1
## 110 110 tinted-lens 4 1
## 111 111 filter 4 1
## 112 112 slow-start 4 1
## 113 113 scrappy 4 1
## 114 114 storm-drain 4 1
## 115 115 ice-body 4 1
## 116 116 solid-rock 4 1
## 117 117 snow-warning 4 1
## 118 118 honey-gather 4 1
## 119 119 frisk 4 1
## 120 120 reckless 4 1
## 121 121 multitype 4 1
## 122 122 flower-gift 4 1
## 123 123 bad-dreams 4 1
## 124 124 pickpocket 5 1
## 125 125 sheer-force 5 1
## 126 126 contrary 5 1
## 127 127 unnerve 5 1
## 128 128 defiant 5 1
## 129 129 defeatist 5 1
## 130 130 cursed-body 5 1
## 131 131 healer 5 1
## 132 132 friend-guard 5 1
## 133 133 weak-armor 5 1
## 134 134 heavy-metal 5 1
## 135 135 light-metal 5 1
## 136 136 multiscale 5 1
## 137 137 toxic-boost 5 1
## 138 138 flare-boost 5 1
## 139 139 harvest 5 1
## 140 140 telepathy 5 1
## 141 141 moody 5 1
## 142 142 overcoat 5 1
## 143 143 poison-touch 5 1
## 144 144 regenerator 5 1
## 145 145 big-pecks 5 1
## 146 146 sand-rush 5 1
## 147 147 wonder-skin 5 1
## 148 148 analytic 5 1
## 149 149 illusion 5 1
## 150 150 imposter 5 1
## 151 151 infiltrator 5 1
## 152 152 mummy 5 1
## 153 153 moxie 5 1
## 154 154 justified 5 1
## 155 155 rattled 5 1
## 156 156 magic-bounce 5 1
## 157 157 sap-sipper 5 1
## 158 158 prankster 5 1
## 159 159 sand-force 5 1
## 160 160 iron-barbs 5 1
## 161 161 zen-mode 5 1
## 162 162 victory-star 5 1
## 163 163 turboblaze 5 1
## 164 164 teravolt 5 1
## 165 165 aroma-veil 6 1
## 166 166 flower-veil 6 1
## 167 167 cheek-pouch 6 1
## 168 168 protean 6 1
## 169 169 fur-coat 6 1
## 170 170 magician 6 1
## 171 171 bulletproof 6 1
## 172 172 competitive 6 1
## 173 173 strong-jaw 6 1
## 174 174 refrigerate 6 1
## 175 175 sweet-veil 6 1
## 176 176 stance-change 6 1
## 177 177 gale-wings 6 1
## 178 178 mega-launcher 6 1
## 179 179 grass-pelt 6 1
## 180 180 symbiosis 6 1
## 181 181 tough-claws 6 1
## 182 182 pixilate 6 1
## 183 183 gooey 6 1
## 184 184 aerilate 6 1
## 185 185 parental-bond 6 1
## 186 186 dark-aura 6 1
## 187 187 fairy-aura 6 1
## 188 188 aura-break 6 1
## 189 189 primordial-sea 6 1
## 190 190 desolate-land 6 1
## 191 191 delta-stream 6 1
## 192 10001 mountaineer 5 0
## 193 10002 wave-rider 5 0
## 194 10003 skater 5 0
## 195 10004 thrust 5 0
## 196 10005 perception 5 0
## 197 10006 parry 5 0
## 198 10007 instinct 5 0
## 199 10008 dodge 5 0
## 200 10009 jagged-edge 5 0
## 201 10010 frostbite 5 0
## 202 10011 tenacity 5 0
## 203 10012 pride 5 0
## 204 10013 deep-sleep 5 0
## 205 10014 power-nap 5 0
## 206 10015 spirit 5 0
## 207 10016 warm-blanket 5 0
## 208 10017 gulp 5 0
## 209 10018 herbivore 5 0
## 210 10019 sandpit 5 0
## 211 10020 hot-blooded 5 0
## 212 10021 medic 5 0
## 213 10022 life-force 5 0
## 214 10023 lunchbox 5 0
## 215 10024 nurse 5 0
## 216 10025 melee 5 0
## 217 10026 sponge 5 0
## 218 10027 bodyguard 5 0
## 219 10028 hero 5 0
## 220 10029 last-bastion 5 0
## 221 10030 stealth 5 0
## 222 10031 vanguard 5 0
## 223 10032 nomad 5 0
## 224 10033 sequence 5 0
## 225 10034 grass-cloak 5 0
## 226 10035 celebrate 5 0
## 227 10036 lullaby 5 0
## 228 10037 calming 5 0
## 229 10038 daze 5 0
## 230 10039 frighten 5 0
## 231 10040 interference 5 0
## 232 10041 mood-maker 5 0
## 233 10042 confidence 5 0
## 234 10043 fortune 5 0
## 235 10044 bonanza 5 0
## 236 10045 explode 5 0
## 237 10046 omnipotent 5 0
## 238 10047 share 5 0
## 239 10048 black-hole 5 0
## 240 10049 shadow-dash 5 0
## 241 10050 sprint 5 0
## 242 10051 disgust 5 0
## 243 10052 high-rise 5 0
## 244 10053 climber 5 0
## 245 10054 flame-boost 5 0
## 246 10055 aqua-boost 5 0
## 247 10056 run-up 5 0
## 248 10057 conqueror 5 0
## 249 10058 shackle 5 0
## 250 10059 decoy 5 0
## 251 10060 shield 5 0
dbGetQuery(pokemonDatabase, "
SELECT *
FROM pokemon_stats")
## pokemon_id stat_id base_stat effort
## 1 1 1 45 0
## 2 1 2 49 0
## 3 1 3 49 0
## 4 1 4 65 1
## 5 1 5 65 0
## 6 1 6 45 0
## 7 2 1 60 0
## 8 2 2 62 0
## 9 2 3 63 0
## 10 2 4 80 1
## 11 2 5 80 1
## 12 2 6 60 0
## 13 3 1 80 0
## 14 3 2 82 0
## 15 3 3 83 0
## 16 3 4 100 2
## 17 3 5 100 1
## 18 3 6 80 0
## 19 4 1 39 0
## 20 4 2 52 0
## 21 4 3 43 0
## 22 4 4 60 0
## 23 4 5 50 0
## 24 4 6 65 1
## 25 5 1 58 0
## 26 5 2 64 0
## 27 5 3 58 0
## 28 5 4 80 1
## 29 5 5 65 0
## 30 5 6 80 1
## 31 6 1 78 0
## 32 6 2 84 0
## 33 6 3 78 0
## 34 6 4 109 3
## 35 6 5 85 0
## 36 6 6 100 0
## 37 7 1 44 0
## 38 7 2 48 0
## 39 7 3 65 1
## 40 7 4 50 0
## 41 7 5 64 0
## 42 7 6 43 0
## 43 8 1 59 0
## 44 8 2 63 0
## 45 8 3 80 1
## 46 8 4 65 0
## 47 8 5 80 1
## 48 8 6 58 0
## 49 9 1 79 0
## 50 9 2 83 0
## 51 9 3 100 0
## 52 9 4 85 0
## 53 9 5 105 3
## 54 9 6 78 0
## 55 10 1 45 1
## 56 10 2 30 0
## 57 10 3 35 0
## 58 10 4 20 0
## 59 10 5 20 0
## 60 10 6 45 0
## 61 11 1 50 0
## 62 11 2 20 0
## 63 11 3 55 2
## 64 11 4 25 0
## 65 11 5 25 0
## 66 11 6 30 0
## 67 12 1 60 0
## 68 12 2 45 0
## 69 12 3 50 0
## 70 12 4 90 2
## 71 12 5 80 1
## 72 12 6 70 0
## 73 13 1 40 0
## 74 13 2 35 0
## 75 13 3 30 0
## 76 13 4 20 0
## 77 13 5 20 0
## 78 13 6 50 1
## 79 14 1 45 0
## 80 14 2 25 0
## 81 14 3 50 2
## 82 14 4 25 0
## 83 14 5 25 0
## 84 14 6 35 0
## 85 15 1 65 0
## 86 15 2 90 2
## 87 15 3 40 0
## 88 15 4 45 0
## 89 15 5 80 1
## 90 15 6 75 0
## 91 16 1 40 0
## 92 16 2 45 0
## 93 16 3 40 0
## 94 16 4 35 0
## 95 16 5 35 0
## 96 16 6 56 1
## 97 17 1 63 0
## 98 17 2 60 0
## 99 17 3 55 0
## 100 17 4 50 0
## 101 17 5 50 0
## 102 17 6 71 2
## 103 18 1 83 0
## 104 18 2 80 0
## 105 18 3 75 0
## 106 18 4 70 0
## 107 18 5 70 0
## 108 18 6 101 3
## 109 19 1 30 0
## 110 19 2 56 0
## 111 19 3 35 0
## 112 19 4 25 0
## 113 19 5 35 0
## 114 19 6 72 1
## 115 20 1 55 0
## 116 20 2 81 0
## 117 20 3 60 0
## 118 20 4 50 0
## 119 20 5 70 0
## 120 20 6 97 2
## 121 21 1 40 0
## 122 21 2 60 0
## 123 21 3 30 0
## 124 21 4 31 0
## 125 21 5 31 0
## 126 21 6 70 1
## 127 22 1 65 0
## 128 22 2 90 0
## 129 22 3 65 0
## 130 22 4 61 0
## 131 22 5 61 0
## 132 22 6 100 2
## 133 23 1 35 0
## 134 23 2 60 1
## 135 23 3 44 0
## 136 23 4 40 0
## 137 23 5 54 0
## 138 23 6 55 0
## 139 24 1 60 0
## 140 24 2 85 2
## 141 24 3 69 0
## 142 24 4 65 0
## 143 24 5 79 0
## 144 24 6 80 0
## 145 25 1 35 0
## 146 25 2 55 0
## 147 25 3 40 0
## 148 25 4 50 0
## 149 25 5 50 0
## 150 25 6 90 2
## 151 26 1 60 0
## 152 26 2 90 0
## 153 26 3 55 0
## 154 26 4 90 0
## 155 26 5 80 0
## 156 26 6 110 3
## 157 27 1 50 0
## 158 27 2 75 0
## 159 27 3 85 1
## 160 27 4 20 0
## 161 27 5 30 0
## 162 27 6 40 0
## 163 28 1 75 0
## 164 28 2 100 0
## 165 28 3 110 2
## 166 28 4 45 0
## 167 28 5 55 0
## 168 28 6 65 0
## 169 29 1 55 1
## 170 29 2 47 0
## 171 29 3 52 0
## 172 29 4 40 0
## 173 29 5 40 0
## 174 29 6 41 0
## 175 30 1 70 2
## 176 30 2 62 0
## 177 30 3 67 0
## 178 30 4 55 0
## 179 30 5 55 0
## 180 30 6 56 0
## 181 31 1 90 3
## 182 31 2 92 0
## 183 31 3 87 0
## 184 31 4 75 0
## 185 31 5 85 0
## 186 31 6 76 0
## 187 32 1 46 0
## 188 32 2 57 1
## 189 32 3 40 0
## 190 32 4 40 0
## 191 32 5 40 0
## 192 32 6 50 0
## 193 33 1 61 0
## 194 33 2 72 2
## 195 33 3 57 0
## 196 33 4 55 0
## 197 33 5 55 0
## 198 33 6 65 0
## 199 34 1 81 0
## 200 34 2 102 3
## 201 34 3 77 0
## 202 34 4 85 0
## 203 34 5 75 0
## 204 34 6 85 0
## 205 35 1 70 2
## 206 35 2 45 0
## 207 35 3 48 0
## 208 35 4 60 0
## 209 35 5 65 0
## 210 35 6 35 0
## 211 36 1 95 3
## 212 36 2 70 0
## 213 36 3 73 0
## 214 36 4 95 0
## 215 36 5 90 0
## 216 36 6 60 0
## 217 37 1 38 0
## 218 37 2 41 0
## 219 37 3 40 0
## 220 37 4 50 0
## 221 37 5 65 0
## 222 37 6 65 1
## 223 38 1 73 0
## 224 38 2 76 0
## 225 38 3 75 0
## 226 38 4 81 0
## 227 38 5 100 1
## 228 38 6 100 1
## 229 39 1 115 2
## 230 39 2 45 0
## 231 39 3 20 0
## 232 39 4 45 0
## 233 39 5 25 0
## 234 39 6 20 0
## 235 40 1 140 3
## 236 40 2 70 0
## 237 40 3 45 0
## 238 40 4 85 0
## 239 40 5 50 0
## 240 40 6 45 0
## 241 41 1 40 0
## 242 41 2 45 0
## 243 41 3 35 0
## 244 41 4 30 0
## 245 41 5 40 0
## 246 41 6 55 1
## 247 42 1 75 0
## 248 42 2 80 0
## 249 42 3 70 0
## 250 42 4 65 0
## 251 42 5 75 0
## 252 42 6 90 2
## 253 43 1 45 0
## 254 43 2 50 0
## 255 43 3 55 0
## 256 43 4 75 1
## 257 43 5 65 0
## 258 43 6 30 0
## 259 44 1 60 0
## 260 44 2 65 0
## 261 44 3 70 0
## 262 44 4 85 2
## 263 44 5 75 0
## 264 44 6 40 0
## 265 45 1 75 0
## 266 45 2 80 0
## 267 45 3 85 0
## 268 45 4 110 3
## 269 45 5 90 0
## 270 45 6 50 0
## 271 46 1 35 0
## 272 46 2 70 1
## 273 46 3 55 0
## 274 46 4 45 0
## 275 46 5 55 0
## 276 46 6 25 0
## 277 47 1 60 0
## 278 47 2 95 2
## 279 47 3 80 1
## 280 47 4 60 0
## 281 47 5 80 0
## 282 47 6 30 0
## 283 48 1 60 0
## 284 48 2 55 0
## 285 48 3 50 0
## 286 48 4 40 0
## 287 48 5 55 1
## 288 48 6 45 0
## 289 49 1 70 0
## 290 49 2 65 0
## 291 49 3 60 0
## 292 49 4 90 1
## 293 49 5 75 0
## 294 49 6 90 1
## 295 50 1 10 0
## 296 50 2 55 0
## 297 50 3 25 0
## 298 50 4 35 0
## 299 50 5 45 0
## 300 50 6 95 1
## 301 51 1 35 0
## 302 51 2 80 0
## 303 51 3 50 0
## 304 51 4 50 0
## 305 51 5 70 0
## 306 51 6 120 2
## 307 52 1 40 0
## 308 52 2 45 0
## 309 52 3 35 0
## 310 52 4 40 0
## 311 52 5 40 0
## 312 52 6 90 1
## 313 53 1 65 0
## 314 53 2 70 0
## 315 53 3 60 0
## 316 53 4 65 0
## 317 53 5 65 0
## 318 53 6 115 2
## 319 54 1 50 0
## 320 54 2 52 0
## 321 54 3 48 0
## 322 54 4 65 1
## 323 54 5 50 0
## 324 54 6 55 0
## 325 55 1 80 0
## 326 55 2 82 0
## 327 55 3 78 0
## 328 55 4 95 2
## 329 55 5 80 0
## 330 55 6 85 0
## 331 56 1 40 0
## 332 56 2 80 1
## 333 56 3 35 0
## 334 56 4 35 0
## 335 56 5 45 0
## 336 56 6 70 0
## 337 57 1 65 0
## 338 57 2 105 2
## 339 57 3 60 0
## 340 57 4 60 0
## 341 57 5 70 0
## 342 57 6 95 0
## 343 58 1 55 0
## 344 58 2 70 1
## 345 58 3 45 0
## 346 58 4 70 0
## 347 58 5 50 0
## 348 58 6 60 0
## 349 59 1 90 0
## 350 59 2 110 2
## 351 59 3 80 0
## 352 59 4 100 0
## 353 59 5 80 0
## 354 59 6 95 0
## 355 60 1 40 0
## 356 60 2 50 0
## 357 60 3 40 0
## 358 60 4 40 0
## 359 60 5 40 0
## 360 60 6 90 1
## 361 61 1 65 0
## 362 61 2 65 0
## 363 61 3 65 0
## 364 61 4 50 0
## 365 61 5 50 0
## 366 61 6 90 2
## 367 62 1 90 0
## 368 62 2 95 0
## 369 62 3 95 3
## 370 62 4 70 0
## 371 62 5 90 0
## 372 62 6 70 0
## 373 63 1 25 0
## 374 63 2 20 0
## 375 63 3 15 0
## 376 63 4 105 1
## 377 63 5 55 0
## 378 63 6 90 0
## 379 64 1 40 0
## 380 64 2 35 0
## 381 64 3 30 0
## 382 64 4 120 2
## 383 64 5 70 0
## 384 64 6 105 0
## 385 65 1 55 0
## 386 65 2 50 0
## 387 65 3 45 0
## 388 65 4 135 3
## 389 65 5 95 0
## 390 65 6 120 0
## 391 66 1 70 0
## 392 66 2 80 1
## 393 66 3 50 0
## 394 66 4 35 0
## 395 66 5 35 0
## 396 66 6 35 0
## 397 67 1 80 0
## 398 67 2 100 2
## 399 67 3 70 0
## 400 67 4 50 0
## 401 67 5 60 0
## 402 67 6 45 0
## 403 68 1 90 0
## 404 68 2 130 3
## 405 68 3 80 0
## 406 68 4 65 0
## 407 68 5 85 0
## 408 68 6 55 0
## 409 69 1 50 0
## 410 69 2 75 1
## 411 69 3 35 0
## 412 69 4 70 0
## 413 69 5 30 0
## 414 69 6 40 0
## 415 70 1 65 0
## 416 70 2 90 2
## 417 70 3 50 0
## 418 70 4 85 0
## 419 70 5 45 0
## 420 70 6 55 0
## 421 71 1 80 0
## 422 71 2 105 3
## 423 71 3 65 0
## 424 71 4 100 0
## 425 71 5 70 0
## 426 71 6 70 0
## 427 72 1 40 0
## 428 72 2 40 0
## 429 72 3 35 0
## 430 72 4 50 0
## 431 72 5 100 1
## 432 72 6 70 0
## 433 73 1 80 0
## 434 73 2 70 0
## 435 73 3 65 0
## 436 73 4 80 0
## 437 73 5 120 2
## 438 73 6 100 0
## 439 74 1 40 0
## 440 74 2 80 0
## 441 74 3 100 1
## 442 74 4 30 0
## 443 74 5 30 0
## 444 74 6 20 0
## 445 75 1 55 0
## 446 75 2 95 0
## 447 75 3 115 2
## 448 75 4 45 0
## 449 75 5 45 0
## 450 75 6 35 0
## 451 76 1 80 0
## 452 76 2 120 0
## 453 76 3 130 3
## 454 76 4 55 0
## 455 76 5 65 0
## 456 76 6 45 0
## 457 77 1 50 0
## 458 77 2 85 0
## 459 77 3 55 0
## 460 77 4 65 0
## 461 77 5 65 0
## 462 77 6 90 1
## 463 78 1 65 0
## 464 78 2 100 0
## 465 78 3 70 0
## 466 78 4 80 0
## 467 78 5 80 0
## 468 78 6 105 2
## 469 79 1 90 1
## 470 79 2 65 0
## 471 79 3 65 0
## 472 79 4 40 0
## 473 79 5 40 0
## 474 79 6 15 0
## 475 80 1 95 0
## 476 80 2 75 0
## 477 80 3 110 2
## 478 80 4 100 0
## 479 80 5 80 0
## 480 80 6 30 0
## 481 81 1 25 0
## 482 81 2 35 0
## 483 81 3 70 0
## 484 81 4 95 1
## 485 81 5 55 0
## 486 81 6 45 0
## 487 82 1 50 0
## 488 82 2 60 0
## 489 82 3 95 0
## 490 82 4 120 2
## 491 82 5 70 0
## 492 82 6 70 0
## 493 83 1 52 0
## 494 83 2 65 1
## 495 83 3 55 0
## 496 83 4 58 0
## 497 83 5 62 0
## 498 83 6 60 0
## 499 84 1 35 0
## 500 84 2 85 1
## 501 84 3 45 0
## 502 84 4 35 0
## 503 84 5 35 0
## 504 84 6 75 0
## 505 85 1 60 0
## 506 85 2 110 2
## 507 85 3 70 0
## 508 85 4 60 0
## 509 85 5 60 0
## 510 85 6 100 0
## 511 86 1 65 0
## 512 86 2 45 0
## 513 86 3 55 0
## 514 86 4 45 0
## 515 86 5 70 1
## 516 86 6 45 0
## 517 87 1 90 0
## 518 87 2 70 0
## 519 87 3 80 0
## 520 87 4 70 0
## 521 87 5 95 2
## 522 87 6 70 0
## 523 88 1 80 1
## 524 88 2 80 0
## 525 88 3 50 0
## 526 88 4 40 0
## 527 88 5 50 0
## 528 88 6 25 0
## 529 89 1 105 1
## 530 89 2 105 1
## 531 89 3 75 0
## 532 89 4 65 0
## 533 89 5 100 0
## 534 89 6 50 0
## 535 90 1 30 0
## 536 90 2 65 0
## 537 90 3 100 1
## 538 90 4 45 0
## 539 90 5 25 0
## 540 90 6 40 0
## 541 91 1 50 0
## 542 91 2 95 0
## 543 91 3 180 2
## 544 91 4 85 0
## 545 91 5 45 0
## 546 91 6 70 0
## 547 92 1 30 0
## 548 92 2 35 0
## 549 92 3 30 0
## 550 92 4 100 1
## 551 92 5 35 0
## 552 92 6 80 0
## 553 93 1 45 0
## 554 93 2 50 0
## 555 93 3 45 0
## 556 93 4 115 2
## 557 93 5 55 0
## 558 93 6 95 0
## 559 94 1 60 0
## 560 94 2 65 0
## 561 94 3 60 0
## 562 94 4 130 3
## 563 94 5 75 0
## 564 94 6 110 0
## 565 95 1 35 0
## 566 95 2 45 0
## 567 95 3 160 1
## 568 95 4 30 0
## 569 95 5 45 0
## 570 95 6 70 0
## 571 96 1 60 0
## 572 96 2 48 0
## 573 96 3 45 0
## 574 96 4 43 0
## 575 96 5 90 1
## 576 96 6 42 0
## 577 97 1 85 0
## 578 97 2 73 0
## 579 97 3 70 0
## 580 97 4 73 0
## 581 97 5 115 2
## 582 97 6 67 0
## 583 98 1 30 0
## 584 98 2 105 1
## 585 98 3 90 0
## 586 98 4 25 0
## 587 98 5 25 0
## 588 98 6 50 0
## 589 99 1 55 0
## 590 99 2 130 2
## 591 99 3 115 0
## 592 99 4 50 0
## 593 99 5 50 0
## 594 99 6 75 0
## 595 100 1 40 0
## 596 100 2 30 0
## 597 100 3 50 0
## 598 100 4 55 0
## 599 100 5 55 0
## 600 100 6 100 1
## 601 101 1 60 0
## 602 101 2 50 0
## 603 101 3 70 0
## 604 101 4 80 0
## 605 101 5 80 0
## 606 101 6 140 2
## 607 102 1 60 0
## 608 102 2 40 0
## 609 102 3 80 1
## 610 102 4 60 0
## 611 102 5 45 0
## 612 102 6 40 0
## 613 103 1 95 0
## 614 103 2 95 0
## 615 103 3 85 0
## 616 103 4 125 2
## 617 103 5 65 0
## 618 103 6 55 0
## 619 104 1 50 0
## 620 104 2 50 0
## 621 104 3 95 1
## 622 104 4 40 0
## 623 104 5 50 0
## 624 104 6 35 0
## 625 105 1 60 0
## 626 105 2 80 0
## 627 105 3 110 2
## 628 105 4 50 0
## 629 105 5 80 0
## 630 105 6 45 0
## 631 106 1 50 0
## 632 106 2 120 2
## 633 106 3 53 0
## 634 106 4 35 0
## 635 106 5 110 0
## 636 106 6 87 0
## 637 107 1 50 0
## 638 107 2 105 0
## 639 107 3 79 0
## 640 107 4 35 0
## 641 107 5 110 2
## 642 107 6 76 0
## 643 108 1 90 2
## 644 108 2 55 0
## 645 108 3 75 0
## 646 108 4 60 0
## 647 108 5 75 0
## 648 108 6 30 0
## 649 109 1 40 0
## 650 109 2 65 0
## 651 109 3 95 1
## 652 109 4 60 0
## 653 109 5 45 0
## 654 109 6 35 0
## 655 110 1 65 0
## 656 110 2 90 0
## 657 110 3 120 2
## 658 110 4 85 0
## 659 110 5 70 0
## 660 110 6 60 0
## 661 111 1 80 0
## 662 111 2 85 0
## 663 111 3 95 1
## 664 111 4 30 0
## 665 111 5 30 0
## 666 111 6 25 0
## 667 112 1 105 0
## 668 112 2 130 2
## 669 112 3 120 0
## 670 112 4 45 0
## 671 112 5 45 0
## 672 112 6 40 0
## 673 113 1 250 2
## 674 113 2 5 0
## 675 113 3 5 0
## 676 113 4 35 0
## 677 113 5 105 0
## 678 113 6 50 0
## 679 114 1 65 0
## 680 114 2 55 0
## 681 114 3 115 1
## 682 114 4 100 0
## 683 114 5 40 0
## 684 114 6 60 0
## 685 115 1 105 2
## 686 115 2 95 0
## 687 115 3 80 0
## 688 115 4 40 0
## 689 115 5 80 0
## 690 115 6 90 0
## 691 116 1 30 0
## 692 116 2 40 0
## 693 116 3 70 0
## 694 116 4 70 1
## 695 116 5 25 0
## 696 116 6 60 0
## 697 117 1 55 0
## 698 117 2 65 0
## 699 117 3 95 1
## 700 117 4 95 1
## 701 117 5 45 0
## 702 117 6 85 0
## 703 118 1 45 0
## 704 118 2 67 1
## 705 118 3 60 0
## 706 118 4 35 0
## 707 118 5 50 0
## 708 118 6 63 0
## 709 119 1 80 0
## 710 119 2 92 2
## 711 119 3 65 0
## 712 119 4 65 0
## 713 119 5 80 0
## 714 119 6 68 0
## 715 120 1 30 0
## 716 120 2 45 0
## 717 120 3 55 0
## 718 120 4 70 0
## 719 120 5 55 0
## 720 120 6 85 1
## 721 121 1 60 0
## 722 121 2 75 0
## 723 121 3 85 0
## 724 121 4 100 0
## 725 121 5 85 0
## 726 121 6 115 2
## 727 122 1 40 0
## 728 122 2 45 0
## 729 122 3 65 0
## 730 122 4 100 0
## 731 122 5 120 2
## 732 122 6 90 0
## 733 123 1 70 0
## 734 123 2 110 1
## 735 123 3 80 0
## 736 123 4 55 0
## 737 123 5 80 0
## 738 123 6 105 0
## 739 124 1 65 0
## 740 124 2 50 0
## 741 124 3 35 0
## 742 124 4 115 2
## 743 124 5 95 0
## 744 124 6 95 0
## 745 125 1 65 0
## 746 125 2 83 0
## 747 125 3 57 0
## 748 125 4 95 0
## 749 125 5 85 0
## 750 125 6 105 2
## 751 126 1 65 0
## 752 126 2 95 0
## 753 126 3 57 0
## 754 126 4 100 2
## 755 126 5 85 0
## 756 126 6 93 0
## 757 127 1 65 0
## 758 127 2 125 2
## 759 127 3 100 0
## 760 127 4 55 0
## 761 127 5 70 0
## 762 127 6 85 0
## 763 128 1 75 0
## 764 128 2 100 1
## 765 128 3 95 0
## 766 128 4 40 0
## 767 128 5 70 0
## 768 128 6 110 1
## 769 129 1 20 0
## 770 129 2 10 0
## 771 129 3 55 0
## 772 129 4 15 0
## 773 129 5 20 0
## 774 129 6 80 1
## 775 130 1 95 0
## 776 130 2 125 2
## 777 130 3 79 0
## 778 130 4 60 0
## 779 130 5 100 0
## 780 130 6 81 0
## 781 131 1 130 2
## 782 131 2 85 0
## 783 131 3 80 0
## 784 131 4 85 0
## 785 131 5 95 0
## 786 131 6 60 0
## 787 132 1 48 1
## 788 132 2 48 0
## 789 132 3 48 0
## 790 132 4 48 0
## 791 132 5 48 0
## 792 132 6 48 0
## 793 133 1 55 0
## 794 133 2 55 0
## 795 133 3 50 0
## 796 133 4 45 0
## 797 133 5 65 1
## 798 133 6 55 0
## 799 134 1 130 2
## 800 134 2 65 0
## 801 134 3 60 0
## 802 134 4 110 0
## 803 134 5 95 0
## 804 134 6 65 0
## 805 135 1 65 0
## 806 135 2 65 0
## 807 135 3 60 0
## 808 135 4 110 0
## 809 135 5 95 0
## 810 135 6 130 2
## 811 136 1 65 0
## 812 136 2 130 2
## 813 136 3 60 0
## 814 136 4 95 0
## 815 136 5 110 0
## 816 136 6 65 0
## 817 137 1 65 0
## 818 137 2 60 0
## 819 137 3 70 0
## 820 137 4 85 1
## 821 137 5 75 0
## 822 137 6 40 0
## 823 138 1 35 0
## 824 138 2 40 0
## 825 138 3 100 1
## 826 138 4 90 0
## 827 138 5 55 0
## 828 138 6 35 0
## 829 139 1 70 0
## 830 139 2 60 0
## 831 139 3 125 2
## 832 139 4 115 0
## 833 139 5 70 0
## 834 139 6 55 0
## 835 140 1 30 0
## 836 140 2 80 0
## 837 140 3 90 1
## 838 140 4 55 0
## 839 140 5 45 0
## 840 140 6 55 0
## 841 141 1 60 0
## 842 141 2 115 2
## 843 141 3 105 0
## 844 141 4 65 0
## 845 141 5 70 0
## 846 141 6 80 0
## 847 142 1 80 0
## 848 142 2 105 0
## 849 142 3 65 0
## 850 142 4 60 0
## 851 142 5 75 0
## 852 142 6 130 2
## 853 143 1 160 2
## 854 143 2 110 0
## 855 143 3 65 0
## 856 143 4 65 0
## 857 143 5 110 0
## 858 143 6 30 0
## 859 144 1 90 0
## 860 144 2 85 0
## 861 144 3 100 0
## 862 144 4 95 0
## 863 144 5 125 3
## 864 144 6 85 0
## 865 145 1 90 0
## 866 145 2 90 0
## 867 145 3 85 0
## 868 145 4 125 3
## 869 145 5 90 0
## 870 145 6 100 0
## 871 146 1 90 0
## 872 146 2 100 0
## 873 146 3 90 0
## 874 146 4 125 3
## 875 146 5 85 0
## 876 146 6 90 0
## 877 147 1 41 0
## 878 147 2 64 1
## 879 147 3 45 0
## 880 147 4 50 0
## 881 147 5 50 0
## 882 147 6 50 0
## 883 148 1 61 0
## 884 148 2 84 2
## 885 148 3 65 0
## 886 148 4 70 0
## 887 148 5 70 0
## 888 148 6 70 0
## 889 149 1 91 0
## 890 149 2 134 3
## 891 149 3 95 0
## 892 149 4 100 0
## 893 149 5 100 0
## 894 149 6 80 0
## 895 150 1 106 0
## 896 150 2 110 0
## 897 150 3 90 0
## 898 150 4 154 3
## 899 150 5 90 0
## 900 150 6 130 0
## 901 151 1 100 3
## 902 151 2 100 0
## 903 151 3 100 0
## 904 151 4 100 0
## 905 151 5 100 0
## 906 151 6 100 0
## 907 152 1 45 0
## 908 152 2 49 0
## 909 152 3 65 0
## 910 152 4 49 0
## 911 152 5 65 1
## 912 152 6 45 0
## 913 153 1 60 0
## 914 153 2 62 0
## 915 153 3 80 1
## 916 153 4 63 0
## 917 153 5 80 1
## 918 153 6 60 0
## 919 154 1 80 0
## 920 154 2 82 0
## 921 154 3 100 1
## 922 154 4 83 0
## 923 154 5 100 2
## 924 154 6 80 0
## 925 155 1 39 0
## 926 155 2 52 0
## 927 155 3 43 0
## 928 155 4 60 0
## 929 155 5 50 0
## 930 155 6 65 1
## 931 156 1 58 0
## 932 156 2 64 0
## 933 156 3 58 0
## 934 156 4 80 1
## 935 156 5 65 0
## 936 156 6 80 1
## 937 157 1 78 0
## 938 157 2 84 0
## 939 157 3 78 0
## 940 157 4 109 3
## 941 157 5 85 0
## 942 157 6 100 0
## 943 158 1 50 0
## 944 158 2 65 1
## 945 158 3 64 0
## 946 158 4 44 0
## 947 158 5 48 0
## 948 158 6 43 0
## 949 159 1 65 0
## 950 159 2 80 1
## 951 159 3 80 1
## 952 159 4 59 0
## 953 159 5 63 0
## 954 159 6 58 0
## 955 160 1 85 0
## 956 160 2 105 2
## 957 160 3 100 1
## 958 160 4 79 0
## 959 160 5 83 0
## 960 160 6 78 0
## 961 161 1 35 0
## 962 161 2 46 1
## 963 161 3 34 0
## 964 161 4 35 0
## 965 161 5 45 0
## 966 161 6 20 0
## 967 162 1 85 0
## 968 162 2 76 0
## 969 162 3 64 0
## 970 162 4 45 0
## 971 162 5 55 0
## 972 162 6 90 2
## 973 163 1 60 1
## 974 163 2 30 0
## 975 163 3 30 0
## 976 163 4 36 0
## 977 163 5 56 0
## 978 163 6 50 0
## 979 164 1 100 2
## 980 164 2 50 0
## 981 164 3 50 0
## 982 164 4 76 0
## 983 164 5 96 0
## 984 164 6 70 0
## 985 165 1 40 0
## 986 165 2 20 0
## 987 165 3 30 0
## 988 165 4 40 0
## 989 165 5 80 1
## 990 165 6 55 0
## 991 166 1 55 0
## 992 166 2 35 0
## 993 166 3 50 0
## 994 166 4 55 0
## 995 166 5 110 2
## 996 166 6 85 0
## 997 167 1 40 0
## 998 167 2 60 1
## 999 167 3 40 0
## 1000 167 4 40 0
## 1001 167 5 40 0
## 1002 167 6 30 0
## 1003 168 1 70 0
## 1004 168 2 90 2
## 1005 168 3 70 0
## 1006 168 4 60 0
## 1007 168 5 60 0
## 1008 168 6 40 0
## 1009 169 1 85 0
## 1010 169 2 90 0
## 1011 169 3 80 0
## 1012 169 4 70 0
## 1013 169 5 80 0
## 1014 169 6 130 3
## 1015 170 1 75 1
## 1016 170 2 38 0
## 1017 170 3 38 0
## 1018 170 4 56 0
## 1019 170 5 56 0
## 1020 170 6 67 0
## 1021 171 1 125 2
## 1022 171 2 58 0
## 1023 171 3 58 0
## 1024 171 4 76 0
## 1025 171 5 76 0
## 1026 171 6 67 0
## 1027 172 1 20 0
## 1028 172 2 40 0
## 1029 172 3 15 0
## 1030 172 4 35 0
## 1031 172 5 35 0
## 1032 172 6 60 1
## 1033 173 1 50 0
## 1034 173 2 25 0
## 1035 173 3 28 0
## 1036 173 4 45 0
## 1037 173 5 55 1
## 1038 173 6 15 0
## 1039 174 1 90 1
## 1040 174 2 30 0
## 1041 174 3 15 0
## 1042 174 4 40 0
## 1043 174 5 20 0
## 1044 174 6 15 0
## 1045 175 1 35 0
## 1046 175 2 20 0
## 1047 175 3 65 0
## 1048 175 4 40 0
## 1049 175 5 65 1
## 1050 175 6 20 0
## 1051 176 1 55 0
## 1052 176 2 40 0
## 1053 176 3 85 0
## 1054 176 4 80 0
## 1055 176 5 105 2
## 1056 176 6 40 0
## 1057 177 1 40 0
## 1058 177 2 50 0
## 1059 177 3 45 0
## 1060 177 4 70 1
## 1061 177 5 45 0
## 1062 177 6 70 0
## 1063 178 1 65 0
## 1064 178 2 75 0
## 1065 178 3 70 0
## 1066 178 4 95 1
## 1067 178 5 70 0
## 1068 178 6 95 1
## 1069 179 1 55 0
## 1070 179 2 40 0
## 1071 179 3 40 0
## 1072 179 4 65 1
## 1073 179 5 45 0
## 1074 179 6 35 0
## 1075 180 1 70 0
## 1076 180 2 55 0
## 1077 180 3 55 0
## 1078 180 4 80 2
## 1079 180 5 60 0
## 1080 180 6 45 0
## 1081 181 1 90 0
## 1082 181 2 75 0
## 1083 181 3 85 0
## 1084 181 4 115 3
## 1085 181 5 90 0
## 1086 181 6 55 0
## 1087 182 1 75 0
## 1088 182 2 80 0
## 1089 182 3 95 0
## 1090 182 4 90 0
## 1091 182 5 100 3
## 1092 182 6 50 0
## 1093 183 1 70 2
## 1094 183 2 20 0
## 1095 183 3 50 0
## 1096 183 4 20 0
## 1097 183 5 50 0
## 1098 183 6 40 0
## 1099 184 1 100 3
## 1100 184 2 50 0
## 1101 184 3 80 0
## 1102 184 4 60 0
## 1103 184 5 80 0
## 1104 184 6 50 0
## 1105 185 1 70 0
## 1106 185 2 100 0
## 1107 185 3 115 2
## 1108 185 4 30 0
## 1109 185 5 65 0
## 1110 185 6 30 0
## 1111 186 1 90 0
## 1112 186 2 75 0
## 1113 186 3 75 0
## 1114 186 4 90 0
## 1115 186 5 100 3
## 1116 186 6 70 0
## 1117 187 1 35 0
## 1118 187 2 35 0
## 1119 187 3 40 0
## 1120 187 4 35 0
## 1121 187 5 55 1
## 1122 187 6 50 0
## 1123 188 1 55 0
## 1124 188 2 45 0
## 1125 188 3 50 0
## 1126 188 4 45 0
## 1127 188 5 65 0
## 1128 188 6 80 2
## 1129 189 1 75 0
## 1130 189 2 55 0
## 1131 189 3 70 0
## 1132 189 4 55 0
## 1133 189 5 95 0
## 1134 189 6 110 3
## 1135 190 1 55 0
## 1136 190 2 70 0
## 1137 190 3 55 0
## 1138 190 4 40 0
## 1139 190 5 55 0
## 1140 190 6 85 1
## 1141 191 1 30 0
## 1142 191 2 30 0
## 1143 191 3 30 0
## 1144 191 4 30 1
## 1145 191 5 30 0
## 1146 191 6 30 0
## 1147 192 1 75 0
## 1148 192 2 75 0
## 1149 192 3 55 0
## 1150 192 4 105 2
## 1151 192 5 85 0
## 1152 192 6 30 0
## 1153 193 1 65 0
## 1154 193 2 65 0
## 1155 193 3 45 0
## 1156 193 4 75 0
## 1157 193 5 45 0
## 1158 193 6 95 1
## 1159 194 1 55 1
## 1160 194 2 45 0
## 1161 194 3 45 0
## 1162 194 4 25 0
## 1163 194 5 25 0
## 1164 194 6 15 0
## 1165 195 1 95 2
## 1166 195 2 85 0
## 1167 195 3 85 0
## 1168 195 4 65 0
## 1169 195 5 65 0
## 1170 195 6 35 0
## 1171 196 1 65 0
## 1172 196 2 65 0
## 1173 196 3 60 0
## 1174 196 4 130 2
## 1175 196 5 95 0
## 1176 196 6 110 0
## 1177 197 1 95 0
## 1178 197 2 65 0
## 1179 197 3 110 0
## 1180 197 4 60 0
## 1181 197 5 130 2
## 1182 197 6 65 0
## 1183 198 1 60 0
## 1184 198 2 85 0
## 1185 198 3 42 0
## 1186 198 4 85 0
## 1187 198 5 42 0
## 1188 198 6 91 1
## 1189 199 1 95 0
## 1190 199 2 75 0
## 1191 199 3 80 0
## 1192 199 4 100 0
## 1193 199 5 110 3
## 1194 199 6 30 0
## 1195 200 1 60 0
## 1196 200 2 60 0
## 1197 200 3 60 0
## 1198 200 4 85 0
## 1199 200 5 85 1
## 1200 200 6 85 0
## 1201 201 1 48 0
## 1202 201 2 72 1
## 1203 201 3 48 0
## 1204 201 4 72 1
## 1205 201 5 48 0
## 1206 201 6 48 0
## 1207 202 1 190 2
## 1208 202 2 33 0
## 1209 202 3 58 0
## 1210 202 4 33 0
## 1211 202 5 58 0
## 1212 202 6 33 0
## 1213 203 1 70 0
## 1214 203 2 80 0
## 1215 203 3 65 0
## 1216 203 4 90 2
## 1217 203 5 65 0
## 1218 203 6 85 0
## 1219 204 1 50 0
## 1220 204 2 65 0
## 1221 204 3 90 1
## 1222 204 4 35 0
## 1223 204 5 35 0
## 1224 204 6 15 0
## 1225 205 1 75 0
## 1226 205 2 90 0
## 1227 205 3 140 2
## 1228 205 4 60 0
## 1229 205 5 60 0
## 1230 205 6 40 0
## 1231 206 1 100 1
## 1232 206 2 70 0
## 1233 206 3 70 0
## 1234 206 4 65 0
## 1235 206 5 65 0
## 1236 206 6 45 0
## 1237 207 1 65 0
## 1238 207 2 75 0
## 1239 207 3 105 1
## 1240 207 4 35 0
## 1241 207 5 65 0
## 1242 207 6 85 0
## 1243 208 1 75 0
## 1244 208 2 85 0
## 1245 208 3 200 2
## 1246 208 4 55 0
## 1247 208 5 65 0
## 1248 208 6 30 0
## 1249 209 1 60 0
## 1250 209 2 80 1
## 1251 209 3 50 0
## 1252 209 4 40 0
## 1253 209 5 40 0
## 1254 209 6 30 0
## 1255 210 1 90 0
## 1256 210 2 120 2
## 1257 210 3 75 0
## 1258 210 4 60 0
## 1259 210 5 60 0
## 1260 210 6 45 0
## 1261 211 1 65 0
## 1262 211 2 95 1
## 1263 211 3 75 0
## 1264 211 4 55 0
## 1265 211 5 55 0
## 1266 211 6 85 0
## 1267 212 1 70 0
## 1268 212 2 130 2
## 1269 212 3 100 0
## 1270 212 4 55 0
## 1271 212 5 80 0
## 1272 212 6 65 0
## 1273 213 1 20 0
## 1274 213 2 10 0
## 1275 213 3 230 1
## 1276 213 4 10 0
## 1277 213 5 230 1
## 1278 213 6 5 0
## 1279 214 1 80 0
## 1280 214 2 125 2
## 1281 214 3 75 0
## 1282 214 4 40 0
## 1283 214 5 95 0
## 1284 214 6 85 0
## 1285 215 1 55 0
## 1286 215 2 95 0
## 1287 215 3 55 0
## 1288 215 4 35 0
## 1289 215 5 75 0
## 1290 215 6 115 1
## 1291 216 1 60 0
## 1292 216 2 80 1
## 1293 216 3 50 0
## 1294 216 4 50 0
## 1295 216 5 50 0
## 1296 216 6 40 0
## 1297 217 1 90 0
## 1298 217 2 130 2
## 1299 217 3 75 0
## 1300 217 4 75 0
## 1301 217 5 75 0
## 1302 217 6 55 0
## 1303 218 1 40 0
## 1304 218 2 40 0
## 1305 218 3 40 0
## 1306 218 4 70 1
## 1307 218 5 40 0
## 1308 218 6 20 0
## 1309 219 1 50 0
## 1310 219 2 50 0
## 1311 219 3 120 2
## 1312 219 4 80 0
## 1313 219 5 80 0
## 1314 219 6 30 0
## 1315 220 1 50 0
## 1316 220 2 50 1
## 1317 220 3 40 0
## 1318 220 4 30 0
## 1319 220 5 30 0
## 1320 220 6 50 0
## 1321 221 1 100 1
## 1322 221 2 100 1
## 1323 221 3 80 0
## 1324 221 4 60 0
## 1325 221 5 60 0
## 1326 221 6 50 0
## 1327 222 1 55 0
## 1328 222 2 55 0
## 1329 222 3 85 1
## 1330 222 4 65 0
## 1331 222 5 85 1
## 1332 222 6 35 0
## 1333 223 1 35 0
## 1334 223 2 65 0
## 1335 223 3 35 0
## 1336 223 4 65 1
## 1337 223 5 35 0
## 1338 223 6 65 0
## 1339 224 1 75 0
## 1340 224 2 105 1
## 1341 224 3 75 0
## 1342 224 4 105 1
## 1343 224 5 75 0
## 1344 224 6 45 0
## 1345 225 1 45 0
## 1346 225 2 55 0
## 1347 225 3 45 0
## 1348 225 4 65 0
## 1349 225 5 45 0
## 1350 225 6 75 1
## 1351 226 1 65 0
## 1352 226 2 40 0
## 1353 226 3 70 0
## 1354 226 4 80 0
## 1355 226 5 140 2
## 1356 226 6 70 0
## 1357 227 1 65 0
## 1358 227 2 80 0
## 1359 227 3 140 2
## 1360 227 4 40 0
## 1361 227 5 70 0
## 1362 227 6 70 0
## 1363 228 1 45 0
## 1364 228 2 60 0
## 1365 228 3 30 0
## 1366 228 4 80 1
## 1367 228 5 50 0
## 1368 228 6 65 0
## 1369 229 1 75 0
## 1370 229 2 90 0
## 1371 229 3 50 0
## 1372 229 4 110 2
## 1373 229 5 80 0
## 1374 229 6 95 0
## 1375 230 1 75 0
## 1376 230 2 95 1
## 1377 230 3 95 0
## 1378 230 4 95 1
## 1379 230 5 95 1
## 1380 230 6 85 0
## 1381 231 1 90 1
## 1382 231 2 60 0
## 1383 231 3 60 0
## 1384 231 4 40 0
## 1385 231 5 40 0
## 1386 231 6 40 0
## 1387 232 1 90 0
## 1388 232 2 120 1
## 1389 232 3 120 1
## 1390 232 4 60 0
## 1391 232 5 60 0
## 1392 232 6 50 0
## 1393 233 1 85 0
## 1394 233 2 80 0
## 1395 233 3 90 0
## 1396 233 4 105 2
## 1397 233 5 95 0
## 1398 233 6 60 0
## 1399 234 1 73 0
## 1400 234 2 95 1
## 1401 234 3 62 0
## 1402 234 4 85 0
## 1403 234 5 65 0
## 1404 234 6 85 0
## 1405 235 1 55 0
## 1406 235 2 20 0
## 1407 235 3 35 0
## 1408 235 4 20 0
## 1409 235 5 45 0
## 1410 235 6 75 1
## 1411 236 1 35 0
## 1412 236 2 35 1
## 1413 236 3 35 0
## 1414 236 4 35 0
## 1415 236 5 35 0
## 1416 236 6 35 0
## 1417 237 1 50 0
## 1418 237 2 95 0
## 1419 237 3 95 0
## 1420 237 4 35 0
## 1421 237 5 110 2
## 1422 237 6 70 0
## 1423 238 1 45 0
## 1424 238 2 30 0
## 1425 238 3 15 0
## 1426 238 4 85 1
## 1427 238 5 65 0
## 1428 238 6 65 0
## 1429 239 1 45 0
## 1430 239 2 63 0
## 1431 239 3 37 0
## 1432 239 4 65 0
## 1433 239 5 55 0
## 1434 239 6 95 1
## 1435 240 1 45 0
## 1436 240 2 75 0
## 1437 240 3 37 0
## 1438 240 4 70 0
## 1439 240 5 55 0
## 1440 240 6 83 1
## 1441 241 1 95 0
## 1442 241 2 80 0
## 1443 241 3 105 2
## 1444 241 4 40 0
## 1445 241 5 70 0
## 1446 241 6 100 0
## 1447 242 1 255 3
## 1448 242 2 10 0
## 1449 242 3 10 0
## 1450 242 4 75 0
## 1451 242 5 135 0
## 1452 242 6 55 0
## 1453 243 1 90 0
## 1454 243 2 85 0
## 1455 243 3 75 0
## 1456 243 4 115 1
## 1457 243 5 100 0
## 1458 243 6 115 2
## 1459 244 1 115 1
## 1460 244 2 115 2
## 1461 244 3 85 0
## 1462 244 4 90 0
## 1463 244 5 75 0
## 1464 244 6 100 0
## 1465 245 1 100 0
## 1466 245 2 75 0
## 1467 245 3 115 1
## 1468 245 4 90 0
## 1469 245 5 115 2
## 1470 245 6 85 0
## 1471 246 1 50 0
## 1472 246 2 64 1
## 1473 246 3 50 0
## 1474 246 4 45 0
## 1475 246 5 50 0
## 1476 246 6 41 0
## 1477 247 1 70 0
## 1478 247 2 84 2
## 1479 247 3 70 0
## 1480 247 4 65 0
## 1481 247 5 70 0
## 1482 247 6 51 0
## 1483 248 1 100 0
## 1484 248 2 134 3
## 1485 248 3 110 0
## 1486 248 4 95 0
## 1487 248 5 100 0
## 1488 248 6 61 0
## 1489 249 1 106 0
## 1490 249 2 90 0
## 1491 249 3 130 0
## 1492 249 4 90 0
## 1493 249 5 154 3
## 1494 249 6 110 0
## 1495 250 1 106 0
## 1496 250 2 130 0
## 1497 250 3 90 0
## 1498 250 4 110 0
## 1499 250 5 154 3
## 1500 250 6 90 0
## 1501 251 1 100 3
## 1502 251 2 100 0
## 1503 251 3 100 0
## 1504 251 4 100 0
## 1505 251 5 100 0
## 1506 251 6 100 0
## 1507 252 1 40 0
## 1508 252 2 45 0
## 1509 252 3 35 0
## 1510 252 4 65 0
## 1511 252 5 55 0
## 1512 252 6 70 1
## 1513 253 1 50 0
## 1514 253 2 65 0
## 1515 253 3 45 0
## 1516 253 4 85 0
## 1517 253 5 65 0
## 1518 253 6 95 2
## 1519 254 1 70 0
## 1520 254 2 85 0
## 1521 254 3 65 0
## 1522 254 4 105 0
## 1523 254 5 85 0
## 1524 254 6 120 3
## 1525 255 1 45 0
## 1526 255 2 60 0
## 1527 255 3 40 0
## 1528 255 4 70 1
## 1529 255 5 50 0
## 1530 255 6 45 0
## 1531 256 1 60 0
## 1532 256 2 85 1
## 1533 256 3 60 0
## 1534 256 4 85 1
## 1535 256 5 60 0
## 1536 256 6 55 0
## 1537 257 1 80 0
## 1538 257 2 120 3
## 1539 257 3 70 0
## 1540 257 4 110 0
## 1541 257 5 70 0
## 1542 257 6 80 0
## 1543 258 1 50 0
## 1544 258 2 70 1
## 1545 258 3 50 0
## 1546 258 4 50 0
## 1547 258 5 50 0
## 1548 258 6 40 0
## 1549 259 1 70 0
## 1550 259 2 85 2
## 1551 259 3 70 0
## 1552 259 4 60 0
## 1553 259 5 70 0
## 1554 259 6 50 0
## 1555 260 1 100 0
## 1556 260 2 110 3
## 1557 260 3 90 0
## 1558 260 4 85 0
## 1559 260 5 90 0
## 1560 260 6 60 0
## 1561 261 1 35 0
## 1562 261 2 55 1
## 1563 261 3 35 0
## 1564 261 4 30 0
## 1565 261 5 30 0
## 1566 261 6 35 0
## 1567 262 1 70 0
## 1568 262 2 90 2
## 1569 262 3 70 0
## 1570 262 4 60 0
## 1571 262 5 60 0
## 1572 262 6 70 0
## 1573 263 1 38 0
## 1574 263 2 30 0
## 1575 263 3 41 0
## 1576 263 4 30 0
## 1577 263 5 41 0
## 1578 263 6 60 1
## 1579 264 1 78 0
## 1580 264 2 70 0
## 1581 264 3 61 0
## 1582 264 4 50 0
## 1583 264 5 61 0
## 1584 264 6 100 2
## 1585 265 1 45 1
## 1586 265 2 45 0
## 1587 265 3 35 0
## 1588 265 4 20 0
## 1589 265 5 30 0
## 1590 265 6 20 0
## 1591 266 1 50 0
## 1592 266 2 35 0
## 1593 266 3 55 2
## 1594 266 4 25 0
## 1595 266 5 25 0
## 1596 266 6 15 0
## 1597 267 1 60 0
## 1598 267 2 70 0
## 1599 267 3 50 0
## 1600 267 4 100 3
## 1601 267 5 50 0
## 1602 267 6 65 0
## 1603 268 1 50 0
## 1604 268 2 35 0
## 1605 268 3 55 2
## 1606 268 4 25 0
## 1607 268 5 25 0
## 1608 268 6 15 0
## 1609 269 1 60 0
## 1610 269 2 50 0
## 1611 269 3 70 0
## 1612 269 4 50 0
## 1613 269 5 90 3
## 1614 269 6 65 0
## 1615 270 1 40 0
## 1616 270 2 30 0
## 1617 270 3 30 0
## 1618 270 4 40 0
## 1619 270 5 50 1
## 1620 270 6 30 0
## 1621 271 1 60 0
## 1622 271 2 50 0
## 1623 271 3 50 0
## 1624 271 4 60 0
## 1625 271 5 70 2
## 1626 271 6 50 0
## 1627 272 1 80 0
## 1628 272 2 70 0
## 1629 272 3 70 0
## 1630 272 4 90 0
## 1631 272 5 100 3
## 1632 272 6 70 0
## 1633 273 1 40 0
## 1634 273 2 40 0
## 1635 273 3 50 1
## 1636 273 4 30 0
## 1637 273 5 30 0
## 1638 273 6 30 0
## 1639 274 1 70 0
## 1640 274 2 70 2
## 1641 274 3 40 0
## 1642 274 4 60 0
## 1643 274 5 40 0
## 1644 274 6 60 0
## 1645 275 1 90 0
## 1646 275 2 100 3
## 1647 275 3 60 0
## 1648 275 4 90 0
## 1649 275 5 60 0
## 1650 275 6 80 0
## 1651 276 1 40 0
## 1652 276 2 55 0
## 1653 276 3 30 0
## 1654 276 4 30 0
## 1655 276 5 30 0
## 1656 276 6 85 1
## 1657 277 1 60 0
## 1658 277 2 85 0
## 1659 277 3 60 0
## 1660 277 4 50 0
## 1661 277 5 50 0
## 1662 277 6 125 2
## 1663 278 1 40 0
## 1664 278 2 30 0
## 1665 278 3 30 0
## 1666 278 4 55 0
## 1667 278 5 30 0
## 1668 278 6 85 1
## 1669 279 1 60 0
## 1670 279 2 50 0
## 1671 279 3 100 2
## 1672 279 4 85 0
## 1673 279 5 70 0
## 1674 279 6 65 0
## 1675 280 1 28 0
## 1676 280 2 25 0
## 1677 280 3 25 0
## 1678 280 4 45 1
## 1679 280 5 35 0
## 1680 280 6 40 0
## 1681 281 1 38 0
## 1682 281 2 35 0
## 1683 281 3 35 0
## 1684 281 4 65 2
## 1685 281 5 55 0
## 1686 281 6 50 0
## 1687 282 1 68 0
## 1688 282 2 65 0
## 1689 282 3 65 0
## 1690 282 4 125 3
## 1691 282 5 115 0
## 1692 282 6 80 0
## 1693 283 1 40 0
## 1694 283 2 30 0
## 1695 283 3 32 0
## 1696 283 4 50 0
## 1697 283 5 52 0
## 1698 283 6 65 1
## 1699 284 1 70 0
## 1700 284 2 60 0
## 1701 284 3 62 0
## 1702 284 4 80 1
## 1703 284 5 82 1
## 1704 284 6 60 0
## 1705 285 1 60 1
## 1706 285 2 40 0
## 1707 285 3 60 0
## 1708 285 4 40 0
## 1709 285 5 60 0
## 1710 285 6 35 0
## 1711 286 1 60 0
## 1712 286 2 130 2
## 1713 286 3 80 0
## 1714 286 4 60 0
## 1715 286 5 60 0
## 1716 286 6 70 0
## 1717 287 1 60 1
## 1718 287 2 60 0
## 1719 287 3 60 0
## 1720 287 4 35 0
## 1721 287 5 35 0
## 1722 287 6 30 0
## 1723 288 1 80 0
## 1724 288 2 80 0
## 1725 288 3 80 0
## 1726 288 4 55 0
## 1727 288 5 55 0
## 1728 288 6 90 2
## 1729 289 1 150 3
## 1730 289 2 160 0
## 1731 289 3 100 0
## 1732 289 4 95 0
## 1733 289 5 65 0
## 1734 289 6 100 0
## 1735 290 1 31 0
## 1736 290 2 45 0
## 1737 290 3 90 1
## 1738 290 4 30 0
## 1739 290 5 30 0
## 1740 290 6 40 0
## 1741 291 1 61 0
## 1742 291 2 90 0
## 1743 291 3 45 0
## 1744 291 4 50 0
## 1745 291 5 50 0
## 1746 291 6 160 2
## 1747 292 1 1 2
## 1748 292 2 90 0
## 1749 292 3 45 0
## 1750 292 4 30 0
## 1751 292 5 30 0
## 1752 292 6 40 0
## 1753 293 1 64 1
## 1754 293 2 51 0
## 1755 293 3 23 0
## 1756 293 4 51 0
## 1757 293 5 23 0
## 1758 293 6 28 0
## 1759 294 1 84 2
## 1760 294 2 71 0
## 1761 294 3 43 0
## 1762 294 4 71 0
## 1763 294 5 43 0
## 1764 294 6 48 0
## 1765 295 1 104 3
## 1766 295 2 91 0
## 1767 295 3 63 0
## 1768 295 4 91 0
## 1769 295 5 73 0
## 1770 295 6 68 0
## 1771 296 1 72 1
## 1772 296 2 60 0
## 1773 296 3 30 0
## 1774 296 4 20 0
## 1775 296 5 30 0
## 1776 296 6 25 0
## 1777 297 1 144 2
## 1778 297 2 120 0
## 1779 297 3 60 0
## 1780 297 4 40 0
## 1781 297 5 60 0
## 1782 297 6 50 0
## 1783 298 1 50 1
## 1784 298 2 20 0
## 1785 298 3 40 0
## 1786 298 4 20 0
## 1787 298 5 40 0
## 1788 298 6 20 0
## 1789 299 1 30 0
## 1790 299 2 45 0
## 1791 299 3 135 1
## 1792 299 4 45 0
## 1793 299 5 90 0
## 1794 299 6 30 0
## 1795 300 1 50 0
## 1796 300 2 45 0
## 1797 300 3 45 0
## 1798 300 4 35 0
## 1799 300 5 35 0
## 1800 300 6 50 1
## 1801 301 1 70 1
## 1802 301 2 65 0
## 1803 301 3 65 0
## 1804 301 4 55 0
## 1805 301 5 55 0
## 1806 301 6 70 1
## 1807 302 1 50 0
## 1808 302 2 75 1
## 1809 302 3 75 1
## 1810 302 4 65 0
## 1811 302 5 65 0
## 1812 302 6 50 0
## 1813 303 1 50 0
## 1814 303 2 85 1
## 1815 303 3 85 1
## 1816 303 4 55 0
## 1817 303 5 55 0
## 1818 303 6 50 0
## 1819 304 1 50 0
## 1820 304 2 70 0
## 1821 304 3 100 1
## 1822 304 4 40 0
## 1823 304 5 40 0
## 1824 304 6 30 0
## 1825 305 1 60 0
## 1826 305 2 90 0
## 1827 305 3 140 2
## 1828 305 4 50 0
## 1829 305 5 50 0
## 1830 305 6 40 0
## 1831 306 1 70 0
## 1832 306 2 110 0
## 1833 306 3 180 3
## 1834 306 4 60 0
## 1835 306 5 60 0
## 1836 306 6 50 0
## 1837 307 1 30 0
## 1838 307 2 40 0
## 1839 307 3 55 0
## 1840 307 4 40 0
## 1841 307 5 55 0
## 1842 307 6 60 1
## 1843 308 1 60 0
## 1844 308 2 60 0
## 1845 308 3 75 0
## 1846 308 4 60 0
## 1847 308 5 75 0
## 1848 308 6 80 2
## 1849 309 1 40 0
## 1850 309 2 45 0
## 1851 309 3 40 0
## 1852 309 4 65 0
## 1853 309 5 40 0
## 1854 309 6 65 1
## 1855 310 1 70 0
## 1856 310 2 75 0
## 1857 310 3 60 0
## 1858 310 4 105 0
## 1859 310 5 60 0
## 1860 310 6 105 2
## 1861 311 1 60 0
## 1862 311 2 50 0
## 1863 311 3 40 0
## 1864 311 4 85 0
## 1865 311 5 75 0
## 1866 311 6 95 1
## 1867 312 1 60 0
## 1868 312 2 40 0
## 1869 312 3 50 0
## 1870 312 4 75 0
## 1871 312 5 85 0
## 1872 312 6 95 1
## 1873 313 1 65 0
## 1874 313 2 73 0
## 1875 313 3 55 0
## 1876 313 4 47 0
## 1877 313 5 75 0
## 1878 313 6 85 1
## 1879 314 1 65 0
## 1880 314 2 47 0
## 1881 314 3 55 0
## 1882 314 4 73 0
## 1883 314 5 75 0
## 1884 314 6 85 1
## 1885 315 1 50 0
## 1886 315 2 60 0
## 1887 315 3 45 0
## 1888 315 4 100 2
## 1889 315 5 80 0
## 1890 315 6 65 0
## 1891 316 1 70 1
## 1892 316 2 43 0
## 1893 316 3 53 0
## 1894 316 4 43 0
## 1895 316 5 53 0
## 1896 316 6 40 0
## 1897 317 1 100 2
## 1898 317 2 73 0
## 1899 317 3 83 0
## 1900 317 4 73 0
## 1901 317 5 83 0
## 1902 317 6 55 0
## 1903 318 1 45 0
## 1904 318 2 90 1
## 1905 318 3 20 0
## 1906 318 4 65 0
## 1907 318 5 20 0
## 1908 318 6 65 0
## 1909 319 1 70 0
## 1910 319 2 120 2
## 1911 319 3 40 0
## 1912 319 4 95 0
## 1913 319 5 40 0
## 1914 319 6 95 0
## 1915 320 1 130 1
## 1916 320 2 70 0
## 1917 320 3 35 0
## 1918 320 4 70 0
## 1919 320 5 35 0
## 1920 320 6 60 0
## 1921 321 1 170 2
## 1922 321 2 90 0
## 1923 321 3 45 0
## 1924 321 4 90 0
## 1925 321 5 45 0
## 1926 321 6 60 0
## 1927 322 1 60 0
## 1928 322 2 60 0
## 1929 322 3 40 0
## 1930 322 4 65 1
## 1931 322 5 45 0
## 1932 322 6 35 0
## 1933 323 1 70 0
## 1934 323 2 100 1
## 1935 323 3 70 0
## 1936 323 4 105 1
## 1937 323 5 75 0
## 1938 323 6 40 0
## 1939 324 1 70 0
## 1940 324 2 85 0
## 1941 324 3 140 2
## 1942 324 4 85 0
## 1943 324 5 70 0
## 1944 324 6 20 0
## 1945 325 1 60 0
## 1946 325 2 25 0
## 1947 325 3 35 0
## 1948 325 4 70 0
## 1949 325 5 80 1
## 1950 325 6 60 0
## 1951 326 1 80 0
## 1952 326 2 45 0
## 1953 326 3 65 0
## 1954 326 4 90 0
## 1955 326 5 110 2
## 1956 326 6 80 0
## 1957 327 1 60 0
## 1958 327 2 60 0
## 1959 327 3 60 0
## 1960 327 4 60 1
## 1961 327 5 60 0
## 1962 327 6 60 0
## 1963 328 1 45 0
## 1964 328 2 100 1
## 1965 328 3 45 0
## 1966 328 4 45 0
## 1967 328 5 45 0
## 1968 328 6 10 0
## 1969 329 1 50 0
## 1970 329 2 70 1
## 1971 329 3 50 0
## 1972 329 4 50 0
## 1973 329 5 50 0
## 1974 329 6 70 1
## 1975 330 1 80 0
## 1976 330 2 100 1
## 1977 330 3 80 0
## 1978 330 4 80 0
## 1979 330 5 80 0
## 1980 330 6 100 2
## 1981 331 1 50 0
## 1982 331 2 85 0
## 1983 331 3 40 0
## 1984 331 4 85 1
## 1985 331 5 40 0
## 1986 331 6 35 0
## 1987 332 1 70 0
## 1988 332 2 115 1
## 1989 332 3 60 0
## 1990 332 4 115 1
## 1991 332 5 60 0
## 1992 332 6 55 0
## 1993 333 1 45 0
## 1994 333 2 40 0
## 1995 333 3 60 0
## 1996 333 4 40 0
## 1997 333 5 75 1
## 1998 333 6 50 0
## 1999 334 1 75 0
## 2000 334 2 70 0
## 2001 334 3 90 0
## 2002 334 4 70 0
## 2003 334 5 105 2
## 2004 334 6 80 0
## 2005 335 1 73 0
## 2006 335 2 115 2
## 2007 335 3 60 0
## 2008 335 4 60 0
## 2009 335 5 60 0
## 2010 335 6 90 0
## 2011 336 1 73 0
## 2012 336 2 100 1
## 2013 336 3 60 0
## 2014 336 4 100 1
## 2015 336 5 60 0
## 2016 336 6 65 0
## 2017 337 1 70 0
## 2018 337 2 55 0
## 2019 337 3 65 0
## 2020 337 4 95 2
## 2021 337 5 85 0
## 2022 337 6 70 0
## 2023 338 1 70 0
## 2024 338 2 95 2
## 2025 338 3 85 0
## 2026 338 4 55 0
## 2027 338 5 65 0
## 2028 338 6 70 0
## 2029 339 1 50 1
## 2030 339 2 48 0
## 2031 339 3 43 0
## 2032 339 4 46 0
## 2033 339 5 41 0
## 2034 339 6 60 0
## 2035 340 1 110 2
## 2036 340 2 78 0
## 2037 340 3 73 0
## 2038 340 4 76 0
## 2039 340 5 71 0
## 2040 340 6 60 0
## 2041 341 1 43 0
## 2042 341 2 80 1
## 2043 341 3 65 0
## 2044 341 4 50 0
## 2045 341 5 35 0
## 2046 341 6 35 0
## 2047 342 1 63 0
## 2048 342 2 120 2
## 2049 342 3 85 0
## 2050 342 4 90 0
## 2051 342 5 55 0
## 2052 342 6 55 0
## 2053 343 1 40 0
## 2054 343 2 40 0
## 2055 343 3 55 0
## 2056 343 4 40 0
## 2057 343 5 70 1
## 2058 343 6 55 0
## 2059 344 1 60 0
## 2060 344 2 70 0
## 2061 344 3 105 0
## 2062 344 4 70 0
## 2063 344 5 120 2
## 2064 344 6 75 0
## 2065 345 1 66 0
## 2066 345 2 41 0
## 2067 345 3 77 0
## 2068 345 4 61 0
## 2069 345 5 87 1
## 2070 345 6 23 0
## 2071 346 1 86 0
## 2072 346 2 81 0
## 2073 346 3 97 0
## 2074 346 4 81 0
## 2075 346 5 107 2
## 2076 346 6 43 0
## 2077 347 1 45 0
## 2078 347 2 95 1
## 2079 347 3 50 0
## 2080 347 4 40 0
## 2081 347 5 50 0
## 2082 347 6 75 0
## 2083 348 1 75 0
## 2084 348 2 125 2
## 2085 348 3 100 0
## 2086 348 4 70 0
## 2087 348 5 80 0
## 2088 348 6 45 0
## 2089 349 1 20 0
## 2090 349 2 15 0
## 2091 349 3 20 0
## 2092 349 4 10 0
## 2093 349 5 55 0
## 2094 349 6 80 1
## 2095 350 1 95 0
## 2096 350 2 60 0
## 2097 350 3 79 0
## 2098 350 4 100 0
## 2099 350 5 125 2
## 2100 350 6 81 0
## 2101 351 1 70 1
## 2102 351 2 70 0
## 2103 351 3 70 0
## 2104 351 4 70 0
## 2105 351 5 70 0
## 2106 351 6 70 0
## 2107 352 1 60 0
## 2108 352 2 90 0
## 2109 352 3 70 0
## 2110 352 4 60 0
## 2111 352 5 120 1
## 2112 352 6 40 0
## 2113 353 1 44 0
## 2114 353 2 75 1
## 2115 353 3 35 0
## 2116 353 4 63 0
## 2117 353 5 33 0
## 2118 353 6 45 0
## 2119 354 1 64 0
## 2120 354 2 115 2
## 2121 354 3 65 0
## 2122 354 4 83 0
## 2123 354 5 63 0
## 2124 354 6 65 0
## 2125 355 1 20 0
## 2126 355 2 40 0
## 2127 355 3 90 0
## 2128 355 4 30 0
## 2129 355 5 90 1
## 2130 355 6 25 0
## 2131 356 1 40 0
## 2132 356 2 70 0
## 2133 356 3 130 1
## 2134 356 4 60 0
## 2135 356 5 130 1
## 2136 356 6 25 0
## 2137 357 1 99 2
## 2138 357 2 68 0
## 2139 357 3 83 0
## 2140 357 4 72 0
## 2141 357 5 87 0
## 2142 357 6 51 0
## 2143 358 1 65 0
## 2144 358 2 50 0
## 2145 358 3 70 0
## 2146 358 4 95 1
## 2147 358 5 80 1
## 2148 358 6 65 0
## 2149 359 1 65 0
## 2150 359 2 130 2
## 2151 359 3 60 0
## 2152 359 4 75 0
## 2153 359 5 60 0
## 2154 359 6 75 0
## 2155 360 1 95 1
## 2156 360 2 23 0
## 2157 360 3 48 0
## 2158 360 4 23 0
## 2159 360 5 48 0
## 2160 360 6 23 0
## 2161 361 1 50 1
## 2162 361 2 50 0
## 2163 361 3 50 0
## 2164 361 4 50 0
## 2165 361 5 50 0
## 2166 361 6 50 0
## 2167 362 1 80 2
## 2168 362 2 80 0
## 2169 362 3 80 0
## 2170 362 4 80 0
## 2171 362 5 80 0
## 2172 362 6 80 0
## 2173 363 1 70 1
## 2174 363 2 40 0
## 2175 363 3 50 0
## 2176 363 4 55 0
## 2177 363 5 50 0
## 2178 363 6 25 0
## 2179 364 1 90 2
## 2180 364 2 60 0
## 2181 364 3 70 0
## 2182 364 4 75 0
## 2183 364 5 70 0
## 2184 364 6 45 0
## 2185 365 1 110 3
## 2186 365 2 80 0
## 2187 365 3 90 0
## 2188 365 4 95 0
## 2189 365 5 90 0
## 2190 365 6 65 0
## 2191 366 1 35 0
## 2192 366 2 64 0
## 2193 366 3 85 1
## 2194 366 4 74 0
## 2195 366 5 55 0
## 2196 366 6 32 0
## 2197 367 1 55 0
## 2198 367 2 104 1
## 2199 367 3 105 1
## 2200 367 4 94 0
## 2201 367 5 75 0
## 2202 367 6 52 0
## 2203 368 1 55 0
## 2204 368 2 84 0
## 2205 368 3 105 0
## 2206 368 4 114 2
## 2207 368 5 75 0
## 2208 368 6 52 0
## 2209 369 1 100 1
## 2210 369 2 90 0
## 2211 369 3 130 1
## 2212 369 4 45 0
## 2213 369 5 65 0
## 2214 369 6 55 0
## 2215 370 1 43 0
## 2216 370 2 30 0
## 2217 370 3 55 0
## 2218 370 4 40 0
## 2219 370 5 65 0
## 2220 370 6 97 1
## 2221 371 1 45 0
## 2222 371 2 75 1
## 2223 371 3 60 0
## 2224 371 4 40 0
## 2225 371 5 30 0
## 2226 371 6 50 0
## 2227 372 1 65 0
## 2228 372 2 95 0
## 2229 372 3 100 2
## 2230 372 4 60 0
## 2231 372 5 50 0
## 2232 372 6 50 0
## 2233 373 1 95 0
## 2234 373 2 135 3
## 2235 373 3 80 0
## 2236 373 4 110 0
## 2237 373 5 80 0
## 2238 373 6 100 0
## 2239 374 1 40 0
## 2240 374 2 55 0
## 2241 374 3 80 1
## 2242 374 4 35 0
## 2243 374 5 60 0
## 2244 374 6 30 0
## 2245 375 1 60 0
## 2246 375 2 75 0
## 2247 375 3 100 2
## 2248 375 4 55 0
## 2249 375 5 80 0
## 2250 375 6 50 0
## 2251 376 1 80 0
## 2252 376 2 135 0
## 2253 376 3 130 3
## 2254 376 4 95 0
## 2255 376 5 90 0
## 2256 376 6 70 0
## 2257 377 1 80 0
## 2258 377 2 100 0
## 2259 377 3 200 3
## 2260 377 4 50 0
## 2261 377 5 100 0
## 2262 377 6 50 0
## 2263 378 1 80 0
## 2264 378 2 50 0
## 2265 378 3 100 0
## 2266 378 4 100 0
## 2267 378 5 200 3
## 2268 378 6 50 0
## 2269 379 1 80 0
## 2270 379 2 75 0
## 2271 379 3 150 2
## 2272 379 4 75 0
## 2273 379 5 150 1
## 2274 379 6 50 0
## 2275 380 1 80 0
## 2276 380 2 80 0
## 2277 380 3 90 0
## 2278 380 4 110 0
## 2279 380 5 130 3
## 2280 380 6 110 0
## 2281 381 1 80 0
## 2282 381 2 90 0
## 2283 381 3 80 0
## 2284 381 4 130 3
## 2285 381 5 110 0
## 2286 381 6 110 0
## 2287 382 1 100 0
## 2288 382 2 100 0
## 2289 382 3 90 0
## 2290 382 4 150 3
## 2291 382 5 140 0
## 2292 382 6 90 0
## 2293 383 1 100 0
## 2294 383 2 150 3
## 2295 383 3 140 0
## 2296 383 4 100 0
## 2297 383 5 90 0
## 2298 383 6 90 0
## 2299 384 1 105 0
## 2300 384 2 150 2
## 2301 384 3 90 0
## 2302 384 4 150 1
## 2303 384 5 90 0
## 2304 384 6 95 0
## 2305 385 1 100 3
## 2306 385 2 100 0
## 2307 385 3 100 0
## 2308 385 4 100 0
## 2309 385 5 100 0
## 2310 385 6 100 0
## 2311 386 1 50 0
## 2312 386 2 150 1
## 2313 386 3 50 0
## 2314 386 4 150 1
## 2315 386 5 50 0
## 2316 386 6 150 1
## 2317 387 1 55 0
## 2318 387 2 68 1
## 2319 387 3 64 0
## 2320 387 4 45 0
## 2321 387 5 55 0
## 2322 387 6 31 0
## 2323 388 1 75 0
## 2324 388 2 89 1
## 2325 388 3 85 1
## 2326 388 4 55 0
## 2327 388 5 65 0
## 2328 388 6 36 0
## 2329 389 1 95 0
## 2330 389 2 109 2
## 2331 389 3 105 1
## 2332 389 4 75 0
## 2333 389 5 85 0
## 2334 389 6 56 0
## 2335 390 1 44 0
## 2336 390 2 58 0
## 2337 390 3 44 0
## 2338 390 4 58 0
## 2339 390 5 44 0
## 2340 390 6 61 1
## 2341 391 1 64 0
## 2342 391 2 78 0
## 2343 391 3 52 0
## 2344 391 4 78 1
## 2345 391 5 52 0
## 2346 391 6 81 1
## 2347 392 1 76 0
## 2348 392 2 104 1
## 2349 392 3 71 0
## 2350 392 4 104 1
## 2351 392 5 71 0
## 2352 392 6 108 1
## 2353 393 1 53 0
## 2354 393 2 51 0
## 2355 393 3 53 0
## 2356 393 4 61 1
## 2357 393 5 56 0
## 2358 393 6 40 0
## 2359 394 1 64 0
## 2360 394 2 66 0
## 2361 394 3 68 0
## 2362 394 4 81 2
## 2363 394 5 76 0
## 2364 394 6 50 0
## 2365 395 1 84 0
## 2366 395 2 86 0
## 2367 395 3 88 0
## 2368 395 4 111 3
## 2369 395 5 101 0
## 2370 395 6 60 0
## 2371 396 1 40 0
## 2372 396 2 55 0
## 2373 396 3 30 0
## 2374 396 4 30 0
## 2375 396 5 30 0
## 2376 396 6 60 1
## 2377 397 1 55 0
## 2378 397 2 75 0
## 2379 397 3 50 0
## 2380 397 4 40 0
## 2381 397 5 40 0
## 2382 397 6 80 2
## 2383 398 1 85 0
## 2384 398 2 120 3
## 2385 398 3 70 0
## 2386 398 4 50 0
## 2387 398 5 60 0
## 2388 398 6 100 0
## 2389 399 1 59 1
## 2390 399 2 45 0
## 2391 399 3 40 0
## 2392 399 4 35 0
## 2393 399 5 40 0
## 2394 399 6 31 0
## 2395 400 1 79 0
## 2396 400 2 85 2
## 2397 400 3 60 0
## 2398 400 4 55 0
## 2399 400 5 60 0
## 2400 400 6 71 0
## 2401 401 1 37 0
## 2402 401 2 25 0
## 2403 401 3 41 1
## 2404 401 4 25 0
## 2405 401 5 41 0
## 2406 401 6 25 0
## 2407 402 1 77 0
## 2408 402 2 85 2
## 2409 402 3 51 0
## 2410 402 4 55 0
## 2411 402 5 51 0
## 2412 402 6 65 0
## 2413 403 1 45 0
## 2414 403 2 65 1
## 2415 403 3 34 0
## 2416 403 4 40 0
## 2417 403 5 34 0
## 2418 403 6 45 0
## 2419 404 1 60 0
## 2420 404 2 85 2
## 2421 404 3 49 0
## 2422 404 4 60 0
## 2423 404 5 49 0
## 2424 404 6 60 0
## 2425 405 1 80 0
## 2426 405 2 120 3
## 2427 405 3 79 0
## 2428 405 4 95 0
## 2429 405 5 79 0
## 2430 405 6 70 0
## 2431 406 1 40 0
## 2432 406 2 30 0
## 2433 406 3 35 0
## 2434 406 4 50 1
## 2435 406 5 70 0
## 2436 406 6 55 0
## 2437 407 1 60 0
## 2438 407 2 70 0
## 2439 407 3 65 0
## 2440 407 4 125 3
## 2441 407 5 105 0
## 2442 407 6 90 0
## 2443 408 1 67 0
## 2444 408 2 125 1
## 2445 408 3 40 0
## 2446 408 4 30 0
## 2447 408 5 30 0
## 2448 408 6 58 0
## 2449 409 1 97 0
## 2450 409 2 165 2
## 2451 409 3 60 0
## 2452 409 4 65 0
## 2453 409 5 50 0
## 2454 409 6 58 0
## 2455 410 1 30 0
## 2456 410 2 42 0
## 2457 410 3 118 1
## 2458 410 4 42 0
## 2459 410 5 88 0
## 2460 410 6 30 0
## 2461 411 1 60 0
## 2462 411 2 52 0
## 2463 411 3 168 2
## 2464 411 4 47 0
## 2465 411 5 138 0
## 2466 411 6 30 0
## 2467 412 1 40 0
## 2468 412 2 29 0
## 2469 412 3 45 0
## 2470 412 4 29 0
## 2471 412 5 45 1
## 2472 412 6 36 0
## 2473 413 1 60 0
## 2474 413 2 59 0
## 2475 413 3 85 0
## 2476 413 4 79 0
## 2477 413 5 105 2
## 2478 413 6 36 0
## 2479 414 1 70 0
## 2480 414 2 94 1
## 2481 414 3 50 0
## 2482 414 4 94 1
## 2483 414 5 50 0
## 2484 414 6 66 0
## 2485 415 1 30 0
## 2486 415 2 30 0
## 2487 415 3 42 0
## 2488 415 4 30 0
## 2489 415 5 42 0
## 2490 415 6 70 1
## 2491 416 1 70 0
## 2492 416 2 80 0
## 2493 416 3 102 1
## 2494 416 4 80 0
## 2495 416 5 102 1
## 2496 416 6 40 0
## 2497 417 1 60 0
## 2498 417 2 45 0
## 2499 417 3 70 0
## 2500 417 4 45 0
## 2501 417 5 90 0
## 2502 417 6 95 1
## 2503 418 1 55 0
## 2504 418 2 65 0
## 2505 418 3 35 0
## 2506 418 4 60 0
## 2507 418 5 30 0
## 2508 418 6 85 1
## 2509 419 1 85 0
## 2510 419 2 105 0
## 2511 419 3 55 0
## 2512 419 4 85 0
## 2513 419 5 50 0
## 2514 419 6 115 2
## 2515 420 1 45 0
## 2516 420 2 35 0
## 2517 420 3 45 0
## 2518 420 4 62 1
## 2519 420 5 53 0
## 2520 420 6 35 0
## 2521 421 1 70 0
## 2522 421 2 60 0
## 2523 421 3 70 0
## 2524 421 4 87 2
## 2525 421 5 78 0
## 2526 421 6 85 0
## 2527 422 1 76 1
## 2528 422 2 48 0
## 2529 422 3 48 0
## 2530 422 4 57 0
## 2531 422 5 62 0
## 2532 422 6 34 0
## 2533 423 1 111 2
## 2534 423 2 83 0
## 2535 423 3 68 0
## 2536 423 4 92 0
## 2537 423 5 82 0
## 2538 423 6 39 0
## 2539 424 1 75 0
## 2540 424 2 100 0
## 2541 424 3 66 0
## 2542 424 4 60 0
## 2543 424 5 66 0
## 2544 424 6 115 2
## 2545 425 1 90 1
## 2546 425 2 50 0
## 2547 425 3 34 0
## 2548 425 4 60 0
## 2549 425 5 44 0
## 2550 425 6 70 0
## 2551 426 1 150 2
## 2552 426 2 80 0
## 2553 426 3 44 0
## 2554 426 4 90 0
## 2555 426 5 54 0
## 2556 426 6 80 0
## 2557 427 1 55 0
## 2558 427 2 66 0
## 2559 427 3 44 0
## 2560 427 4 44 0
## 2561 427 5 56 0
## 2562 427 6 85 1
## 2563 428 1 65 0
## 2564 428 2 76 0
## 2565 428 3 84 0
## 2566 428 4 54 0
## 2567 428 5 96 0
## 2568 428 6 105 2
## 2569 429 1 60 0
## 2570 429 2 60 0
## 2571 429 3 60 0
## 2572 429 4 105 1
## 2573 429 5 105 1
## 2574 429 6 105 0
## 2575 430 1 100 0
## 2576 430 2 125 2
## 2577 430 3 52 0
## 2578 430 4 105 0
## 2579 430 5 52 0
## 2580 430 6 71 0
## 2581 431 1 49 0
## 2582 431 2 55 0
## 2583 431 3 42 0
## 2584 431 4 42 0
## 2585 431 5 37 0
## 2586 431 6 85 1
## 2587 432 1 71 0
## 2588 432 2 82 0
## 2589 432 3 64 0
## 2590 432 4 64 0
## 2591 432 5 59 0
## 2592 432 6 112 2
## 2593 433 1 45 0
## 2594 433 2 30 0
## 2595 433 3 50 0
## 2596 433 4 65 1
## 2597 433 5 50 0
## 2598 433 6 45 0
## 2599 434 1 63 0
## 2600 434 2 63 0
## 2601 434 3 47 0
## 2602 434 4 41 0
## 2603 434 5 41 0
## 2604 434 6 74 1
## 2605 435 1 103 2
## 2606 435 2 93 0
## 2607 435 3 67 0
## 2608 435 4 71 0
## 2609 435 5 61 0
## 2610 435 6 84 0
## 2611 436 1 57 0
## 2612 436 2 24 0
## 2613 436 3 86 1
## 2614 436 4 24 0
## 2615 436 5 86 0
## 2616 436 6 23 0
## 2617 437 1 67 0
## 2618 437 2 89 0
## 2619 437 3 116 1
## 2620 437 4 79 0
## 2621 437 5 116 1
## 2622 437 6 33 0
## 2623 438 1 50 0
## 2624 438 2 80 0
## 2625 438 3 95 1
## 2626 438 4 10 0
## 2627 438 5 45 0
## 2628 438 6 10 0
## 2629 439 1 20 0
## 2630 439 2 25 0
## 2631 439 3 45 0
## 2632 439 4 70 0
## 2633 439 5 90 1
## 2634 439 6 60 0
## 2635 440 1 100 1
## 2636 440 2 5 0
## 2637 440 3 5 0
## 2638 440 4 15 0
## 2639 440 5 65 0
## 2640 440 6 30 0
## 2641 441 1 76 0
## 2642 441 2 65 1
## 2643 441 3 45 0
## 2644 441 4 92 0
## 2645 441 5 42 0
## 2646 441 6 91 0
## 2647 442 1 50 0
## 2648 442 2 92 0
## 2649 442 3 108 1
## 2650 442 4 92 0
## 2651 442 5 108 1
## 2652 442 6 35 0
## 2653 443 1 58 0
## 2654 443 2 70 1
## 2655 443 3 45 0
## 2656 443 4 40 0
## 2657 443 5 45 0
## 2658 443 6 42 0
## 2659 444 1 68 0
## 2660 444 2 90 2
## 2661 444 3 65 0
## 2662 444 4 50 0
## 2663 444 5 55 0
## 2664 444 6 82 0
## 2665 445 1 108 0
## 2666 445 2 130 3
## 2667 445 3 95 0
## 2668 445 4 80 0
## 2669 445 5 85 0
## 2670 445 6 102 0
## 2671 446 1 135 1
## 2672 446 2 85 0
## 2673 446 3 40 0
## 2674 446 4 40 0
## 2675 446 5 85 0
## 2676 446 6 5 0
## 2677 447 1 40 0
## 2678 447 2 70 1
## 2679 447 3 40 0
## 2680 447 4 35 0
## 2681 447 5 40 0
## 2682 447 6 60 0
## 2683 448 1 70 0
## 2684 448 2 110 1
## 2685 448 3 70 0
## 2686 448 4 115 1
## 2687 448 5 70 0
## 2688 448 6 90 0
## 2689 449 1 68 0
## 2690 449 2 72 0
## 2691 449 3 78 1
## 2692 449 4 38 0
## 2693 449 5 42 0
## 2694 449 6 32 0
## 2695 450 1 108 0
## 2696 450 2 112 0
## 2697 450 3 118 2
## 2698 450 4 68 0
## 2699 450 5 72 0
## 2700 450 6 47 0
## 2701 451 1 40 0
## 2702 451 2 50 0
## 2703 451 3 90 1
## 2704 451 4 30 0
## 2705 451 5 55 0
## 2706 451 6 65 0
## 2707 452 1 70 0
## 2708 452 2 90 0
## 2709 452 3 110 2
## 2710 452 4 60 0
## 2711 452 5 75 0
## 2712 452 6 95 0
## 2713 453 1 48 0
## 2714 453 2 61 1
## 2715 453 3 40 0
## 2716 453 4 61 0
## 2717 453 5 40 0
## 2718 453 6 50 0
## 2719 454 1 83 0
## 2720 454 2 106 2
## 2721 454 3 65 0
## 2722 454 4 86 0
## 2723 454 5 65 0
## 2724 454 6 85 0
## 2725 455 1 74 0
## 2726 455 2 100 2
## 2727 455 3 72 0
## 2728 455 4 90 0
## 2729 455 5 72 0
## 2730 455 6 46 0
## 2731 456 1 49 0
## 2732 456 2 49 0
## 2733 456 3 56 0
## 2734 456 4 49 0
## 2735 456 5 61 0
## 2736 456 6 66 1
## 2737 457 1 69 0
## 2738 457 2 69 0
## 2739 457 3 76 0
## 2740 457 4 69 0
## 2741 457 5 86 0
## 2742 457 6 91 2
## 2743 458 1 45 0
## 2744 458 2 20 0
## 2745 458 3 50 0
## 2746 458 4 60 0
## 2747 458 5 120 1
## 2748 458 6 50 0
## 2749 459 1 60 0
## 2750 459 2 62 1
## 2751 459 3 50 0
## 2752 459 4 62 0
## 2753 459 5 60 0
## 2754 459 6 40 0
## 2755 460 1 90 0
## 2756 460 2 92 1
## 2757 460 3 75 0
## 2758 460 4 92 1
## 2759 460 5 85 0
## 2760 460 6 60 0
## 2761 461 1 70 0
## 2762 461 2 120 1
## 2763 461 3 65 0
## 2764 461 4 45 0
## 2765 461 5 85 0
## 2766 461 6 125 1
## 2767 462 1 70 0
## 2768 462 2 70 0
## 2769 462 3 115 0
## 2770 462 4 130 3
## 2771 462 5 90 0
## 2772 462 6 60 0
## 2773 463 1 110 3
## 2774 463 2 85 0
## 2775 463 3 95 0
## 2776 463 4 80 0
## 2777 463 5 95 0
## 2778 463 6 50 0
## 2779 464 1 115 0
## 2780 464 2 140 3
## 2781 464 3 130 0
## 2782 464 4 55 0
## 2783 464 5 55 0
## 2784 464 6 40 0
## 2785 465 1 100 0
## 2786 465 2 100 0
## 2787 465 3 125 2
## 2788 465 4 110 0
## 2789 465 5 50 0
## 2790 465 6 50 0
## 2791 466 1 75 0
## 2792 466 2 123 3
## 2793 466 3 67 0
## 2794 466 4 95 0
## 2795 466 5 85 0
## 2796 466 6 95 0
## 2797 467 1 75 0
## 2798 467 2 95 0
## 2799 467 3 67 0
## 2800 467 4 125 3
## 2801 467 5 95 0
## 2802 467 6 83 0
## 2803 468 1 85 0
## 2804 468 2 50 0
## 2805 468 3 95 0
## 2806 468 4 120 2
## 2807 468 5 115 1
## 2808 468 6 80 0
## 2809 469 1 86 0
## 2810 469 2 76 2
## 2811 469 3 86 0
## 2812 469 4 116 0
## 2813 469 5 56 0
## 2814 469 6 95 0
## 2815 470 1 65 0
## 2816 470 2 110 0
## 2817 470 3 130 2
## 2818 470 4 60 0
## 2819 470 5 65 0
## 2820 470 6 95 0
## 2821 471 1 65 0
## 2822 471 2 60 0
## 2823 471 3 110 0
## 2824 471 4 130 2
## 2825 471 5 95 0
## 2826 471 6 65 0
## 2827 472 1 75 0
## 2828 472 2 95 0
## 2829 472 3 125 2
## 2830 472 4 45 0
## 2831 472 5 75 0
## 2832 472 6 95 0
## 2833 473 1 110 0
## 2834 473 2 130 3
## 2835 473 3 80 0
## 2836 473 4 70 0
## 2837 473 5 60 0
## 2838 473 6 80 0
## 2839 474 1 85 0
## 2840 474 2 80 0
## 2841 474 3 70 0
## 2842 474 4 135 3
## 2843 474 5 75 0
## 2844 474 6 90 0
## 2845 475 1 68 0
## 2846 475 2 125 3
## 2847 475 3 65 0
## 2848 475 4 65 0
## 2849 475 5 115 0
## 2850 475 6 80 0
## 2851 476 1 60 0
## 2852 476 2 55 0
## 2853 476 3 145 1
## 2854 476 4 75 0
## 2855 476 5 150 2
## 2856 476 6 40 0
## 2857 477 1 45 0
## 2858 477 2 100 0
## 2859 477 3 135 1
## 2860 477 4 65 0
## 2861 477 5 135 2
## 2862 477 6 45 0
## 2863 478 1 70 0
## 2864 478 2 80 0
## 2865 478 3 70 0
## 2866 478 4 80 0
## 2867 478 5 70 0
## 2868 478 6 110 2
## 2869 479 1 50 0
## 2870 479 2 50 0
## 2871 479 3 77 0
## 2872 479 4 95 1
## 2873 479 5 77 0
## 2874 479 6 91 1
## 2875 480 1 75 0
## 2876 480 2 75 0
## 2877 480 3 130 2
## 2878 480 4 75 0
## 2879 480 5 130 1
## 2880 480 6 95 0
## 2881 481 1 80 0
## 2882 481 2 105 1
## 2883 481 3 105 0
## 2884 481 4 105 1
## 2885 481 5 105 1
## 2886 481 6 80 0
## 2887 482 1 75 0
## 2888 482 2 125 2
## 2889 482 3 70 0
## 2890 482 4 125 1
## 2891 482 5 70 0
## 2892 482 6 115 0
## 2893 483 1 100 0
## 2894 483 2 120 0
## 2895 483 3 120 0
## 2896 483 4 150 3
## 2897 483 5 100 0
## 2898 483 6 90 0
## 2899 484 1 90 0
## 2900 484 2 120 0
## 2901 484 3 100 0
## 2902 484 4 150 3
## 2903 484 5 120 0
## 2904 484 6 100 0
## 2905 485 1 91 0
## 2906 485 2 90 0
## 2907 485 3 106 0
## 2908 485 4 130 3
## 2909 485 5 106 0
## 2910 485 6 77 0
## 2911 486 1 110 0
## 2912 486 2 160 3
## 2913 486 3 110 0
## 2914 486 4 80 0
## 2915 486 5 110 0
## 2916 486 6 100 0
## 2917 487 1 150 3
## 2918 487 2 100 0
## 2919 487 3 120 0
## 2920 487 4 100 0
## 2921 487 5 120 0
## 2922 487 6 90 0
## 2923 488 1 120 0
## 2924 488 2 70 0
## 2925 488 3 120 0
## 2926 488 4 75 0
## 2927 488 5 130 3
## 2928 488 6 85 0
## 2929 489 1 80 1
## 2930 489 2 80 0
## 2931 489 3 80 0
## 2932 489 4 80 0
## 2933 489 5 80 0
## 2934 489 6 80 0
## 2935 490 1 100 3
## 2936 490 2 100 0
## 2937 490 3 100 0
## 2938 490 4 100 0
## 2939 490 5 100 0
## 2940 490 6 100 0
## 2941 491 1 70 0
## 2942 491 2 90 0
## 2943 491 3 90 0
## 2944 491 4 135 2
## 2945 491 5 90 0
## 2946 491 6 125 1
## 2947 492 1 100 3
## 2948 492 2 100 0
## 2949 492 3 100 0
## 2950 492 4 100 0
## 2951 492 5 100 0
## 2952 492 6 100 0
## 2953 493 1 120 3
## 2954 493 2 120 0
## 2955 493 3 120 0
## 2956 493 4 120 0
## 2957 493 5 120 0
## 2958 493 6 120 0
## 2959 494 1 100 3
## 2960 494 2 100 0
## 2961 494 3 100 0
## 2962 494 4 100 0
## 2963 494 5 100 0
## 2964 494 6 100 0
## 2965 495 1 45 0
## 2966 495 2 45 0
## 2967 495 3 55 0
## 2968 495 4 45 0
## 2969 495 5 55 0
## 2970 495 6 63 1
## 2971 496 1 60 0
## 2972 496 2 60 0
## 2973 496 3 75 0
## 2974 496 4 60 0
## 2975 496 5 75 0
## 2976 496 6 83 2
## 2977 497 1 75 0
## 2978 497 2 75 0
## 2979 497 3 95 0
## 2980 497 4 75 0
## 2981 497 5 95 0
## 2982 497 6 113 3
## 2983 498 1 65 1
## 2984 498 2 63 0
## 2985 498 3 45 0
## 2986 498 4 45 0
## 2987 498 5 45 0
## 2988 498 6 45 0
## 2989 499 1 90 0
## 2990 499 2 93 2
## 2991 499 3 55 0
## 2992 499 4 70 0
## 2993 499 5 55 0
## 2994 499 6 55 0
## 2995 500 1 110 0
## 2996 500 2 123 3
## 2997 500 3 65 0
## 2998 500 4 100 0
## 2999 500 5 65 0
## 3000 500 6 65 0
## 3001 501 1 55 0
## 3002 501 2 55 0
## 3003 501 3 45 0
## 3004 501 4 63 1
## 3005 501 5 45 0
## 3006 501 6 45 0
## 3007 502 1 75 0
## 3008 502 2 75 0
## 3009 502 3 60 0
## 3010 502 4 83 2
## 3011 502 5 60 0
## 3012 502 6 60 0
## 3013 503 1 95 0
## 3014 503 2 100 0
## 3015 503 3 85 0
## 3016 503 4 108 3
## 3017 503 5 70 0
## 3018 503 6 70 0
## 3019 504 1 45 0
## 3020 504 2 55 1
## 3021 504 3 39 0
## 3022 504 4 35 0
## 3023 504 5 39 0
## 3024 504 6 42 0
## 3025 505 1 60 0
## 3026 505 2 85 2
## 3027 505 3 69 0
## 3028 505 4 60 0
## 3029 505 5 69 0
## 3030 505 6 77 0
## 3031 506 1 45 0
## 3032 506 2 60 1
## 3033 506 3 45 0
## 3034 506 4 25 0
## 3035 506 5 45 0
## 3036 506 6 55 0
## 3037 507 1 65 0
## 3038 507 2 80 2
## 3039 507 3 65 0
## 3040 507 4 35 0
## 3041 507 5 65 0
## 3042 507 6 60 0
## 3043 508 1 85 0
## 3044 508 2 110 3
## 3045 508 3 90 0
## 3046 508 4 45 0
## 3047 508 5 90 0
## 3048 508 6 80 0
## 3049 509 1 41 0
## 3050 509 2 50 0
## 3051 509 3 37 0
## 3052 509 4 50 0
## 3053 509 5 37 0
## 3054 509 6 66 1
## 3055 510 1 64 0
## 3056 510 2 88 0
## 3057 510 3 50 0
## 3058 510 4 88 0
## 3059 510 5 50 0
## 3060 510 6 106 2
## 3061 511 1 50 0
## 3062 511 2 53 0
## 3063 511 3 48 0
## 3064 511 4 53 0
## 3065 511 5 48 0
## 3066 511 6 64 1
## 3067 512 1 75 0
## 3068 512 2 98 0
## 3069 512 3 63 0
## 3070 512 4 98 0
## 3071 512 5 63 0
## 3072 512 6 101 2
## 3073 513 1 50 0
## 3074 513 2 53 0
## 3075 513 3 48 0
## 3076 513 4 53 0
## 3077 513 5 48 0
## 3078 513 6 64 1
## 3079 514 1 75 0
## 3080 514 2 98 0
## 3081 514 3 63 0
## 3082 514 4 98 0
## 3083 514 5 63 0
## 3084 514 6 101 2
## 3085 515 1 50 0
## 3086 515 2 53 0
## 3087 515 3 48 0
## 3088 515 4 53 0
## 3089 515 5 48 0
## 3090 515 6 64 1
## 3091 516 1 75 0
## 3092 516 2 98 0
## 3093 516 3 63 0
## 3094 516 4 98 0
## 3095 516 5 63 0
## 3096 516 6 101 2
## 3097 517 1 76 1
## 3098 517 2 25 0
## 3099 517 3 45 0
## 3100 517 4 67 0
## 3101 517 5 55 0
## 3102 517 6 24 0
## 3103 518 1 116 2
## 3104 518 2 55 0
## 3105 518 3 85 0
## 3106 518 4 107 0
## 3107 518 5 95 0
## 3108 518 6 29 0
## 3109 519 1 50 0
## 3110 519 2 55 1
## 3111 519 3 50 0
## 3112 519 4 36 0
## 3113 519 5 30 0
## 3114 519 6 43 0
## 3115 520 1 62 0
## 3116 520 2 77 2
## 3117 520 3 62 0
## 3118 520 4 50 0
## 3119 520 5 42 0
## 3120 520 6 65 0
## 3121 521 1 80 0
## 3122 521 2 115 3
## 3123 521 3 80 0
## 3124 521 4 65 0
## 3125 521 5 55 0
## 3126 521 6 93 0
## 3127 522 1 45 0
## 3128 522 2 60 0
## 3129 522 3 32 0
## 3130 522 4 50 0
## 3131 522 5 32 0
## 3132 522 6 76 1
## 3133 523 1 75 0
## 3134 523 2 100 0
## 3135 523 3 63 0
## 3136 523 4 80 0
## 3137 523 5 63 0
## 3138 523 6 116 2
## 3139 524 1 55 0
## 3140 524 2 75 0
## 3141 524 3 85 1
## 3142 524 4 25 0
## 3143 524 5 25 0
## 3144 524 6 15 0
## 3145 525 1 70 0
## 3146 525 2 105 1
## 3147 525 3 105 1
## 3148 525 4 50 0
## 3149 525 5 40 0
## 3150 525 6 20 0
## 3151 526 1 85 0
## 3152 526 2 135 3
## 3153 526 3 130 0
## 3154 526 4 60 0
## 3155 526 5 80 0
## 3156 526 6 25 0
## 3157 527 1 55 0
## 3158 527 2 45 0
## 3159 527 3 43 0
## 3160 527 4 55 0
## 3161 527 5 43 0
## 3162 527 6 72 1
## 3163 528 1 67 0
## 3164 528 2 57 0
## 3165 528 3 55 0
## 3166 528 4 77 0
## 3167 528 5 55 0
## 3168 528 6 114 2
## 3169 529 1 60 0
## 3170 529 2 85 1
## 3171 529 3 40 0
## 3172 529 4 30 0
## 3173 529 5 45 0
## 3174 529 6 68 0
## 3175 530 1 110 0
## 3176 530 2 135 2
## 3177 530 3 60 0
## 3178 530 4 50 0
## 3179 530 5 65 0
## 3180 530 6 88 0
## 3181 531 1 103 2
## 3182 531 2 60 0
## 3183 531 3 86 0
## 3184 531 4 60 0
## 3185 531 5 86 0
## 3186 531 6 50 0
## 3187 532 1 75 0
## 3188 532 2 80 1
## 3189 532 3 55 0
## 3190 532 4 25 0
## 3191 532 5 35 0
## 3192 532 6 35 0
## 3193 533 1 85 0
## 3194 533 2 105 2
## 3195 533 3 85 0
## 3196 533 4 40 0
## 3197 533 5 50 0
## 3198 533 6 40 0
## 3199 534 1 105 0
## 3200 534 2 140 3
## 3201 534 3 95 0
## 3202 534 4 55 0
## 3203 534 5 65 0
## 3204 534 6 45 0
## 3205 535 1 50 0
## 3206 535 2 50 0
## 3207 535 3 40 0
## 3208 535 4 50 0
## 3209 535 5 40 0
## 3210 535 6 64 1
## 3211 536 1 75 2
## 3212 536 2 65 0
## 3213 536 3 55 0
## 3214 536 4 65 0
## 3215 536 5 55 0
## 3216 536 6 69 0
## 3217 537 1 105 3
## 3218 537 2 95 0
## 3219 537 3 75 0
## 3220 537 4 85 0
## 3221 537 5 75 0
## 3222 537 6 74 0
## 3223 538 1 120 2
## 3224 538 2 100 0
## 3225 538 3 85 0
## 3226 538 4 30 0
## 3227 538 5 85 0
## 3228 538 6 45 0
## 3229 539 1 75 0
## 3230 539 2 125 2
## 3231 539 3 75 0
## 3232 539 4 30 0
## 3233 539 5 75 0
## 3234 539 6 85 0
## 3235 540 1 45 0
## 3236 540 2 53 0
## 3237 540 3 70 1
## 3238 540 4 40 0
## 3239 540 5 60 0
## 3240 540 6 42 0
## 3241 541 1 55 0
## 3242 541 2 63 0
## 3243 541 3 90 2
## 3244 541 4 50 0
## 3245 541 5 80 0
## 3246 541 6 42 0
## 3247 542 1 75 0
## 3248 542 2 103 3
## 3249 542 3 80 0
## 3250 542 4 70 0
## 3251 542 5 80 0
## 3252 542 6 92 0
## 3253 543 1 30 0
## 3254 543 2 45 0
## 3255 543 3 59 1
## 3256 543 4 30 0
## 3257 543 5 39 0
## 3258 543 6 57 0
## 3259 544 1 40 0
## 3260 544 2 55 0
## 3261 544 3 99 2
## 3262 544 4 40 0
## 3263 544 5 79 0
## 3264 544 6 47 0
## 3265 545 1 60 0
## 3266 545 2 100 0
## 3267 545 3 89 0
## 3268 545 4 55 0
## 3269 545 5 69 0
## 3270 545 6 112 3
## 3271 546 1 40 0
## 3272 546 2 27 0
## 3273 546 3 60 0
## 3274 546 4 37 0
## 3275 546 5 50 0
## 3276 546 6 66 1
## 3277 547 1 60 0
## 3278 547 2 67 0
## 3279 547 3 85 0
## 3280 547 4 77 0
## 3281 547 5 75 0
## 3282 547 6 116 2
## 3283 548 1 45 0
## 3284 548 2 35 0
## 3285 548 3 50 0
## 3286 548 4 70 1
## 3287 548 5 50 0
## 3288 548 6 30 0
## 3289 549 1 70 0
## 3290 549 2 60 0
## 3291 549 3 75 0
## 3292 549 4 110 2
## 3293 549 5 75 0
## 3294 549 6 90 0
## 3295 550 1 70 0
## 3296 550 2 92 0
## 3297 550 3 65 0
## 3298 550 4 80 0
## 3299 550 5 55 0
## 3300 550 6 98 2
## 3301 551 1 50 0
## 3302 551 2 72 1
## 3303 551 3 35 0
## 3304 551 4 35 0
## 3305 551 5 35 0
## 3306 551 6 65 0
## 3307 552 1 60 0
## 3308 552 2 82 2
## 3309 552 3 45 0
## 3310 552 4 45 0
## 3311 552 5 45 0
## 3312 552 6 74 0
## 3313 553 1 95 0
## 3314 553 2 117 3
## 3315 553 3 80 0
## 3316 553 4 65 0
## 3317 553 5 70 0
## 3318 553 6 92 0
## 3319 554 1 70 0
## 3320 554 2 90 1
## 3321 554 3 45 0
## 3322 554 4 15 0
## 3323 554 5 45 0
## 3324 554 6 50 0
## 3325 555 1 105 0
## 3326 555 2 140 2
## 3327 555 3 55 0
## 3328 555 4 30 0
## 3329 555 5 55 0
## 3330 555 6 95 0
## 3331 556 1 75 0
## 3332 556 2 86 0
## 3333 556 3 67 0
## 3334 556 4 106 2
## 3335 556 5 67 0
## 3336 556 6 60 0
## 3337 557 1 50 0
## 3338 557 2 65 0
## 3339 557 3 85 1
## 3340 557 4 35 0
## 3341 557 5 35 0
## 3342 557 6 55 0
## 3343 558 1 70 0
## 3344 558 2 95 0
## 3345 558 3 125 2
## 3346 558 4 65 0
## 3347 558 5 75 0
## 3348 558 6 45 0
## 3349 559 1 50 0
## 3350 559 2 75 1
## 3351 559 3 70 0
## 3352 559 4 35 0
## 3353 559 5 70 0
## 3354 559 6 48 0
## 3355 560 1 65 0
## 3356 560 2 90 0
## 3357 560 3 115 1
## 3358 560 4 45 0
## 3359 560 5 115 1
## 3360 560 6 58 0
## 3361 561 1 72 0
## 3362 561 2 58 0
## 3363 561 3 80 0
## 3364 561 4 103 2
## 3365 561 5 80 0
## 3366 561 6 97 0
## 3367 562 1 38 0
## 3368 562 2 30 0
## 3369 562 3 85 1
## 3370 562 4 55 0
## 3371 562 5 65 0
## 3372 562 6 30 0
## 3373 563 1 58 0
## 3374 563 2 50 0
## 3375 563 3 145 2
## 3376 563 4 95 0
## 3377 563 5 105 0
## 3378 563 6 30 0
## 3379 564 1 54 0
## 3380 564 2 78 0
## 3381 564 3 103 1
## 3382 564 4 53 0
## 3383 564 5 45 0
## 3384 564 6 22 0
## 3385 565 1 74 0
## 3386 565 2 108 0
## 3387 565 3 133 2
## 3388 565 4 83 0
## 3389 565 5 65 0
## 3390 565 6 32 0
## 3391 566 1 55 0
## 3392 566 2 112 1
## 3393 566 3 45 0
## 3394 566 4 74 0
## 3395 566 5 45 0
## 3396 566 6 70 0
## 3397 567 1 75 0
## 3398 567 2 140 2
## 3399 567 3 65 0
## 3400 567 4 112 0
## 3401 567 5 65 0
## 3402 567 6 110 0
## 3403 568 1 50 0
## 3404 568 2 50 0
## 3405 568 3 62 0
## 3406 568 4 40 0
## 3407 568 5 62 0
## 3408 568 6 65 1
## 3409 569 1 80 0
## 3410 569 2 95 2
## 3411 569 3 82 0
## 3412 569 4 60 0
## 3413 569 5 82 0
## 3414 569 6 75 0
## 3415 570 1 40 0
## 3416 570 2 65 0
## 3417 570 3 40 0
## 3418 570 4 80 1
## 3419 570 5 40 0
## 3420 570 6 65 0
## 3421 571 1 60 0
## 3422 571 2 105 0
## 3423 571 3 60 0
## 3424 571 4 120 2
## 3425 571 5 60 0
## 3426 571 6 105 0
## 3427 572 1 55 0
## 3428 572 2 50 0
## 3429 572 3 40 0
## 3430 572 4 40 0
## 3431 572 5 40 0
## 3432 572 6 75 1
## 3433 573 1 75 0
## 3434 573 2 95 0
## 3435 573 3 60 0
## 3436 573 4 65 0
## 3437 573 5 60 0
## 3438 573 6 115 2
## 3439 574 1 45 0
## 3440 574 2 30 0
## 3441 574 3 50 0
## 3442 574 4 55 0
## 3443 574 5 65 1
## 3444 574 6 45 0
## 3445 575 1 60 0
## 3446 575 2 45 0
## 3447 575 3 70 0
## 3448 575 4 75 0
## 3449 575 5 85 2
## 3450 575 6 55 0
## 3451 576 1 70 0
## 3452 576 2 55 0
## 3453 576 3 95 0
## 3454 576 4 95 0
## 3455 576 5 110 3
## 3456 576 6 65 0
## 3457 577 1 45 0
## 3458 577 2 30 0
## 3459 577 3 40 0
## 3460 577 4 105 1
## 3461 577 5 50 0
## 3462 577 6 20 0
## 3463 578 1 65 0
## 3464 578 2 40 0
## 3465 578 3 50 0
## 3466 578 4 125 2
## 3467 578 5 60 0
## 3468 578 6 30 0
## 3469 579 1 110 0
## 3470 579 2 65 0
## 3471 579 3 75 0
## 3472 579 4 125 3
## 3473 579 5 85 0
## 3474 579 6 30 0
## 3475 580 1 62 1
## 3476 580 2 44 0
## 3477 580 3 50 0
## 3478 580 4 44 0
## 3479 580 5 50 0
## 3480 580 6 55 0
## 3481 581 1 75 0
## 3482 581 2 87 0
## 3483 581 3 63 0
## 3484 581 4 87 0
## 3485 581 5 63 0
## 3486 581 6 98 2
## 3487 582 1 36 0
## 3488 582 2 50 0
## 3489 582 3 50 0
## 3490 582 4 65 1
## 3491 582 5 60 0
## 3492 582 6 44 0
## 3493 583 1 51 0
## 3494 583 2 65 0
## 3495 583 3 65 0
## 3496 583 4 80 2
## 3497 583 5 75 0
## 3498 583 6 59 0
## 3499 584 1 71 0
## 3500 584 2 95 0
## 3501 584 3 85 0
## 3502 584 4 110 3
## 3503 584 5 95 0
## 3504 584 6 79 0
## 3505 585 1 60 0
## 3506 585 2 60 0
## 3507 585 3 50 0
## 3508 585 4 40 0
## 3509 585 5 50 0
## 3510 585 6 75 1
## 3511 586 1 80 0
## 3512 586 2 100 2
## 3513 586 3 70 0
## 3514 586 4 60 0
## 3515 586 5 70 0
## 3516 586 6 95 0
## 3517 587 1 55 0
## 3518 587 2 75 0
## 3519 587 3 60 0
## 3520 587 4 75 0
## 3521 587 5 60 0
## 3522 587 6 103 2
## 3523 588 1 50 0
## 3524 588 2 75 1
## 3525 588 3 45 0
## 3526 588 4 40 0
## 3527 588 5 45 0
## 3528 588 6 60 0
## 3529 589 1 70 0
## 3530 589 2 135 2
## 3531 589 3 105 0
## 3532 589 4 60 0
## 3533 589 5 105 0
## 3534 589 6 20 0
## 3535 590 1 69 1
## 3536 590 2 55 0
## 3537 590 3 45 0
## 3538 590 4 55 0
## 3539 590 5 55 0
## 3540 590 6 15 0
## 3541 591 1 114 2
## 3542 591 2 85 0
## 3543 591 3 70 0
## 3544 591 4 85 0
## 3545 591 5 80 0
## 3546 591 6 30 0
## 3547 592 1 55 0
## 3548 592 2 40 0
## 3549 592 3 50 0
## 3550 592 4 65 0
## 3551 592 5 85 1
## 3552 592 6 40 0
## 3553 593 1 100 0
## 3554 593 2 60 0
## 3555 593 3 70 0
## 3556 593 4 85 0
## 3557 593 5 105 2
## 3558 593 6 60 0
## 3559 594 1 165 2
## 3560 594 2 75 0
## 3561 594 3 80 0
## 3562 594 4 40 0
## 3563 594 5 45 0
## 3564 594 6 65 0
## 3565 595 1 50 0
## 3566 595 2 47 0
## 3567 595 3 50 0
## 3568 595 4 57 0
## 3569 595 5 50 0
## 3570 595 6 65 1
## 3571 596 1 70 0
## 3572 596 2 77 0
## 3573 596 3 60 0
## 3574 596 4 97 0
## 3575 596 5 60 0
## 3576 596 6 108 2
## 3577 597 1 44 0
## 3578 597 2 50 0
## 3579 597 3 91 1
## 3580 597 4 24 0
## 3581 597 5 86 0
## 3582 597 6 10 0
## 3583 598 1 74 0
## 3584 598 2 94 0
## 3585 598 3 131 2
## 3586 598 4 54 0
## 3587 598 5 116 0
## 3588 598 6 20 0
## 3589 599 1 40 0
## 3590 599 2 55 0
## 3591 599 3 70 1
## 3592 599 4 45 0
## 3593 599 5 60 0
## 3594 599 6 30 0
## 3595 600 1 60 0
## 3596 600 2 80 0
## 3597 600 3 95 2
## 3598 600 4 70 0
## 3599 600 5 85 0
## 3600 600 6 50 0
## 3601 601 1 60 0
## 3602 601 2 100 0
## 3603 601 3 115 3
## 3604 601 4 70 0
## 3605 601 5 85 0
## 3606 601 6 90 0
## 3607 602 1 35 0
## 3608 602 2 55 0
## 3609 602 3 40 0
## 3610 602 4 45 0
## 3611 602 5 40 0
## 3612 602 6 60 1
## 3613 603 1 65 0
## 3614 603 2 85 2
## 3615 603 3 70 0
## 3616 603 4 75 0
## 3617 603 5 70 0
## 3618 603 6 40 0
## 3619 604 1 85 0
## 3620 604 2 115 3
## 3621 604 3 80 0
## 3622 604 4 105 0
## 3623 604 5 80 0
## 3624 604 6 50 0
## 3625 605 1 55 0
## 3626 605 2 55 0
## 3627 605 3 55 0
## 3628 605 4 85 1
## 3629 605 5 55 0
## 3630 605 6 30 0
## 3631 606 1 75 0
## 3632 606 2 75 0
## 3633 606 3 75 0
## 3634 606 4 125 2
## 3635 606 5 95 0
## 3636 606 6 40 0
## 3637 607 1 50 0
## 3638 607 2 30 0
## 3639 607 3 55 0
## 3640 607 4 65 1
## 3641 607 5 55 0
## 3642 607 6 20 0
## 3643 608 1 60 0
## 3644 608 2 40 0
## 3645 608 3 60 0
## 3646 608 4 95 2
## 3647 608 5 60 0
## 3648 608 6 55 0
## 3649 609 1 60 0
## 3650 609 2 55 0
## 3651 609 3 90 0
## 3652 609 4 145 3
## 3653 609 5 90 0
## 3654 609 6 80 0
## 3655 610 1 46 0
## 3656 610 2 87 1
## 3657 610 3 60 0
## 3658 610 4 30 0
## 3659 610 5 40 0
## 3660 610 6 57 0
## 3661 611 1 66 0
## 3662 611 2 117 2
## 3663 611 3 70 0
## 3664 611 4 40 0
## 3665 611 5 50 0
## 3666 611 6 67 0
## 3667 612 1 76 0
## 3668 612 2 147 3
## 3669 612 3 90 0
## 3670 612 4 60 0
## 3671 612 5 70 0
## 3672 612 6 97 0
## 3673 613 1 55 0
## 3674 613 2 70 1
## 3675 613 3 40 0
## 3676 613 4 60 0
## 3677 613 5 40 0
## 3678 613 6 40 0
## 3679 614 1 95 0
## 3680 614 2 110 2
## 3681 614 3 80 0
## 3682 614 4 70 0
## 3683 614 5 80 0
## 3684 614 6 50 0
## 3685 615 1 70 0
## 3686 615 2 50 0
## 3687 615 3 30 0
## 3688 615 4 95 0
## 3689 615 5 135 2
## 3690 615 6 105 0
## 3691 616 1 50 0
## 3692 616 2 40 0
## 3693 616 3 85 1
## 3694 616 4 40 0
## 3695 616 5 65 0
## 3696 616 6 25 0
## 3697 617 1 80 0
## 3698 617 2 70 0
## 3699 617 3 40 0
## 3700 617 4 100 0
## 3701 617 5 60 0
## 3702 617 6 145 2
## 3703 618 1 109 2
## 3704 618 2 66 0
## 3705 618 3 84 0
## 3706 618 4 81 0
## 3707 618 5 99 0
## 3708 618 6 32 0
## 3709 619 1 45 0
## 3710 619 2 85 1
## 3711 619 3 50 0
## 3712 619 4 55 0
## 3713 619 5 50 0
## 3714 619 6 65 0
## 3715 620 1 65 0
## 3716 620 2 125 2
## 3717 620 3 60 0
## 3718 620 4 95 0
## 3719 620 5 60 0
## 3720 620 6 105 0
## 3721 621 1 77 0
## 3722 621 2 120 2
## 3723 621 3 90 0
## 3724 621 4 60 0
## 3725 621 5 90 0
## 3726 621 6 48 0
## 3727 622 1 59 0
## 3728 622 2 74 1
## 3729 622 3 50 0
## 3730 622 4 35 0
## 3731 622 5 50 0
## 3732 622 6 35 0
## 3733 623 1 89 0
## 3734 623 2 124 2
## 3735 623 3 80 0
## 3736 623 4 55 0
## 3737 623 5 80 0
## 3738 623 6 55 0
## 3739 624 1 45 0
## 3740 624 2 85 1
## 3741 624 3 70 0
## 3742 624 4 40 0
## 3743 624 5 40 0
## 3744 624 6 60 0
## 3745 625 1 65 0
## 3746 625 2 125 2
## 3747 625 3 100 0
## 3748 625 4 60 0
## 3749 625 5 70 0
## 3750 625 6 70 0
## 3751 626 1 95 0
## 3752 626 2 110 2
## 3753 626 3 95 0
## 3754 626 4 40 0
## 3755 626 5 95 0
## 3756 626 6 55 0
## 3757 627 1 70 0
## 3758 627 2 83 1
## 3759 627 3 50 0
## 3760 627 4 37 0
## 3761 627 5 50 0
## 3762 627 6 60 0
## 3763 628 1 100 0
## 3764 628 2 123 2
## 3765 628 3 75 0
## 3766 628 4 57 0
## 3767 628 5 75 0
## 3768 628 6 80 0
## 3769 629 1 70 0
## 3770 629 2 55 0
## 3771 629 3 75 1
## 3772 629 4 45 0
## 3773 629 5 65 0
## 3774 629 6 60 0
## 3775 630 1 110 0
## 3776 630 2 65 0
## 3777 630 3 105 0
## 3778 630 4 55 2
## 3779 630 5 95 0
## 3780 630 6 80 0
## 3781 631 1 85 0
## 3782 631 2 97 0
## 3783 631 3 66 0
## 3784 631 4 105 2
## 3785 631 5 66 0
## 3786 631 6 65 0
## 3787 632 1 58 0
## 3788 632 2 109 0
## 3789 632 3 112 2
## 3790 632 4 48 0
## 3791 632 5 48 0
## 3792 632 6 109 0
## 3793 633 1 52 0
## 3794 633 2 65 1
## 3795 633 3 50 0
## 3796 633 4 45 0
## 3797 633 5 50 0
## 3798 633 6 38 0
## 3799 634 1 72 0
## 3800 634 2 85 2
## 3801 634 3 70 0
## 3802 634 4 65 0
## 3803 634 5 70 0
## 3804 634 6 58 0
## 3805 635 1 92 0
## 3806 635 2 105 0
## 3807 635 3 90 0
## 3808 635 4 125 3
## 3809 635 5 90 0
## 3810 635 6 98 0
## 3811 636 1 55 0
## 3812 636 2 85 1
## 3813 636 3 55 0
## 3814 636 4 50 0
## 3815 636 5 55 0
## 3816 636 6 60 0
## 3817 637 1 85 0
## 3818 637 2 60 0
## 3819 637 3 65 0
## 3820 637 4 135 3
## 3821 637 5 105 0
## 3822 637 6 100 0
## 3823 638 1 91 0
## 3824 638 2 90 0
## 3825 638 3 129 3
## 3826 638 4 90 0
## 3827 638 5 72 0
## 3828 638 6 108 0
## 3829 639 1 91 0
## 3830 639 2 129 3
## 3831 639 3 90 0
## 3832 639 4 72 0
## 3833 639 5 90 0
## 3834 639 6 108 0
## 3835 640 1 91 0
## 3836 640 2 90 0
## 3837 640 3 72 0
## 3838 640 4 90 0
## 3839 640 5 129 3
## 3840 640 6 108 0
## 3841 641 1 79 0
## 3842 641 2 115 3
## 3843 641 3 70 0
## 3844 641 4 125 0
## 3845 641 5 80 0
## 3846 641 6 111 0
## 3847 642 1 79 0
## 3848 642 2 115 3
## 3849 642 3 70 0
## 3850 642 4 125 0
## 3851 642 5 80 0
## 3852 642 6 111 0
## 3853 643 1 100 0
## 3854 643 2 120 0
## 3855 643 3 100 0
## 3856 643 4 150 3
## 3857 643 5 120 0
## 3858 643 6 90 0
## 3859 644 1 100 0
## 3860 644 2 150 3
## 3861 644 3 120 0
## 3862 644 4 120 0
## 3863 644 5 100 0
## 3864 644 6 90 0
## 3865 645 1 89 0
## 3866 645 2 125 0
## 3867 645 3 90 0
## 3868 645 4 115 3
## 3869 645 5 80 0
## 3870 645 6 101 0
## 3871 646 1 125 1
## 3872 646 2 130 1
## 3873 646 3 90 0
## 3874 646 4 130 1
## 3875 646 5 90 0
## 3876 646 6 95 0
## 3877 647 1 91 0
## 3878 647 2 72 0
## 3879 647 3 90 0
## 3880 647 4 129 3
## 3881 647 5 90 0
## 3882 647 6 108 0
## 3883 648 1 100 0
## 3884 648 2 77 0
## 3885 648 3 77 0
## 3886 648 4 128 1
## 3887 648 5 128 1
## 3888 648 6 90 1
## 3889 649 1 71 0
## 3890 649 2 120 1
## 3891 649 3 95 0
## 3892 649 4 120 1
## 3893 649 5 95 0
## 3894 649 6 99 1
## 3895 650 1 56 0
## 3896 650 2 61 0
## 3897 650 3 65 1
## 3898 650 4 48 0
## 3899 650 5 45 0
## 3900 650 6 38 0
## 3901 651 1 61 0
## 3902 651 2 78 0
## 3903 651 3 95 2
## 3904 651 4 56 0
## 3905 651 5 58 0
## 3906 651 6 57 0
## 3907 652 1 88 0
## 3908 652 2 107 0
## 3909 652 3 122 3
## 3910 652 4 74 0
## 3911 652 5 75 0
## 3912 652 6 64 0
## 3913 653 1 40 0
## 3914 653 2 45 0
## 3915 653 3 40 0
## 3916 653 4 62 1
## 3917 653 5 60 0
## 3918 653 6 60 0
## 3919 654 1 59 0
## 3920 654 2 59 0
## 3921 654 3 58 0
## 3922 654 4 90 2
## 3923 654 5 70 0
## 3924 654 6 73 0
## 3925 655 1 75 0
## 3926 655 2 69 0
## 3927 655 3 72 0
## 3928 655 4 114 3
## 3929 655 5 100 0
## 3930 655 6 104 0
## 3931 656 1 41 0
## 3932 656 2 56 0
## 3933 656 3 40 0
## 3934 656 4 62 0
## 3935 656 5 44 0
## 3936 656 6 71 1
## 3937 657 1 54 0
## 3938 657 2 63 0
## 3939 657 3 52 0
## 3940 657 4 83 0
## 3941 657 5 56 0
## 3942 657 6 97 2
## 3943 658 1 72 0
## 3944 658 2 95 0
## 3945 658 3 67 0
## 3946 658 4 103 0
## 3947 658 5 71 0
## 3948 658 6 122 3
## 3949 659 1 38 0
## 3950 659 2 36 0
## 3951 659 3 38 0
## 3952 659 4 32 0
## 3953 659 5 36 0
## 3954 659 6 57 1
## 3955 660 1 85 2
## 3956 660 2 56 0
## 3957 660 3 77 0
## 3958 660 4 50 0
## 3959 660 5 77 0
## 3960 660 6 78 0
## 3961 661 1 45 0
## 3962 661 2 50 0
## 3963 661 3 43 0
## 3964 661 4 40 0
## 3965 661 5 38 0
## 3966 661 6 62 1
## 3967 662 1 62 0
## 3968 662 2 73 0
## 3969 662 3 55 0
## 3970 662 4 56 0
## 3971 662 5 52 0
## 3972 662 6 84 2
## 3973 663 1 78 0
## 3974 663 2 81 0
## 3975 663 3 71 0
## 3976 663 4 74 0
## 3977 663 5 69 0
## 3978 663 6 126 3
## 3979 664 1 38 0
## 3980 664 2 35 0
## 3981 664 3 40 1
## 3982 664 4 27 0
## 3983 664 5 25 0
## 3984 664 6 35 0
## 3985 665 1 45 0
## 3986 665 2 22 0
## 3987 665 3 60 2
## 3988 665 4 27 0
## 3989 665 5 30 0
## 3990 665 6 29 0
## 3991 666 1 80 1
## 3992 666 2 52 0
## 3993 666 3 50 0
## 3994 666 4 90 1
## 3995 666 5 50 0
## 3996 666 6 89 1
## 3997 667 1 62 0
## 3998 667 2 50 0
## 3999 667 3 58 0
## 4000 667 4 73 1
## 4001 667 5 54 0
## 4002 667 6 72 0
## 4003 668 1 86 0
## 4004 668 2 68 0
## 4005 668 3 72 0
## 4006 668 4 109 2
## 4007 668 5 66 0
## 4008 668 6 106 0
## 4009 669 1 44 0
## 4010 669 2 38 0
## 4011 669 3 39 0
## 4012 669 4 61 0
## 4013 669 5 79 1
## 4014 669 6 42 0
## 4015 670 1 54 0
## 4016 670 2 45 0
## 4017 670 3 47 0
## 4018 670 4 75 0
## 4019 670 5 98 2
## 4020 670 6 52 0
## 4021 671 1 78 0
## 4022 671 2 65 0
## 4023 671 3 68 0
## 4024 671 4 112 0
## 4025 671 5 154 3
## 4026 671 6 75 0
## 4027 672 1 66 1
## 4028 672 2 65 0
## 4029 672 3 48 0
## 4030 672 4 62 0
## 4031 672 5 57 0
## 4032 672 6 52 0
## 4033 673 1 123 2
## 4034 673 2 100 0
## 4035 673 3 62 0
## 4036 673 4 97 0
## 4037 673 5 81 0
## 4038 673 6 68 0
## 4039 674 1 67 0
## 4040 674 2 82 1
## 4041 674 3 62 0
## 4042 674 4 46 0
## 4043 674 5 48 0
## 4044 674 6 43 0
## 4045 675 1 95 0
## 4046 675 2 124 2
## 4047 675 3 78 0
## 4048 675 4 69 0
## 4049 675 5 71 0
## 4050 675 6 58 0
## 4051 676 1 75 0
## 4052 676 2 80 0
## 4053 676 3 60 0
## 4054 676 4 65 0
## 4055 676 5 90 0
## 4056 676 6 102 1
## 4057 677 1 62 0
## 4058 677 2 48 0
## 4059 677 3 54 0
## 4060 677 4 63 0
## 4061 677 5 60 0
## 4062 677 6 68 1
## 4063 678 1 74 0
## 4064 678 2 48 0
## 4065 678 3 76 0
## 4066 678 4 83 0
## 4067 678 5 81 0
## 4068 678 6 104 2
## 4069 679 1 45 0
## 4070 679 2 80 0
## 4071 679 3 100 1
## 4072 679 4 35 0
## 4073 679 5 37 0
## 4074 679 6 28 0
## 4075 680 1 59 0
## 4076 680 2 110 0
## 4077 680 3 150 2
## 4078 680 4 45 0
## 4079 680 5 49 0
## 4080 680 6 35 0
## 4081 681 1 60 0
## 4082 681 2 50 0
## 4083 681 3 150 2
## 4084 681 4 50 0
## 4085 681 5 150 1
## 4086 681 6 60 0
## 4087 682 1 78 1
## 4088 682 2 52 0
## 4089 682 3 60 0
## 4090 682 4 63 0
## 4091 682 5 65 0
## 4092 682 6 23 0
## 4093 683 1 101 2
## 4094 683 2 72 0
## 4095 683 3 72 0
## 4096 683 4 99 0
## 4097 683 5 89 0
## 4098 683 6 29 0
## 4099 684 1 62 0
## 4100 684 2 48 0
## 4101 684 3 66 1
## 4102 684 4 59 0
## 4103 684 5 57 0
## 4104 684 6 49 0
## 4105 685 1 82 0
## 4106 685 2 80 0
## 4107 685 3 86 2
## 4108 685 4 85 0
## 4109 685 5 75 0
## 4110 685 6 72 0
## 4111 686 1 53 0
## 4112 686 2 54 1
## 4113 686 3 53 0
## 4114 686 4 37 0
## 4115 686 5 46 0
## 4116 686 6 45 0
## 4117 687 1 86 0
## 4118 687 2 92 2
## 4119 687 3 88 0
## 4120 687 4 68 0
## 4121 687 5 75 0
## 4122 687 6 73 0
## 4123 688 1 42 0
## 4124 688 2 52 1
## 4125 688 3 67 0
## 4126 688 4 39 0
## 4127 688 5 56 0
## 4128 688 6 50 0
## 4129 689 1 72 0
## 4130 689 2 105 2
## 4131 689 3 115 0
## 4132 689 4 54 0
## 4133 689 5 86 0
## 4134 689 6 68 0
## 4135 690 1 50 0
## 4136 690 2 60 0
## 4137 690 3 60 0
## 4138 690 4 60 0
## 4139 690 5 60 1
## 4140 690 6 30 0
## 4141 691 1 65 0
## 4142 691 2 75 0
## 4143 691 3 90 0
## 4144 691 4 97 0
## 4145 691 5 123 2
## 4146 691 6 44 0
## 4147 692 1 50 0
## 4148 692 2 53 0
## 4149 692 3 62 0
## 4150 692 4 58 1
## 4151 692 5 63 0
## 4152 692 6 44 0
## 4153 693 1 71 0
## 4154 693 2 73 0
## 4155 693 3 88 0
## 4156 693 4 120 2
## 4157 693 5 89 0
## 4158 693 6 59 0
## 4159 694 1 44 0
## 4160 694 2 38 0
## 4161 694 3 33 0
## 4162 694 4 61 0
## 4163 694 5 43 0
## 4164 694 6 70 1
## 4165 695 1 62 0
## 4166 695 2 55 0
## 4167 695 3 52 0
## 4168 695 4 109 1
## 4169 695 5 94 0
## 4170 695 6 109 1
## 4171 696 1 58 0
## 4172 696 2 89 1
## 4173 696 3 77 0
## 4174 696 4 45 0
## 4175 696 5 45 0
## 4176 696 6 48 0
## 4177 697 1 82 0
## 4178 697 2 121 2
## 4179 697 3 119 0
## 4180 697 4 69 0
## 4181 697 5 59 0
## 4182 697 6 71 0
## 4183 698 1 77 1
## 4184 698 2 59 0
## 4185 698 3 50 0
## 4186 698 4 67 0
## 4187 698 5 63 0
## 4188 698 6 46 0
## 4189 699 1 123 2
## 4190 699 2 77 0
## 4191 699 3 72 0
## 4192 699 4 99 0
## 4193 699 5 92 0
## 4194 699 6 58 0
## 4195 700 1 95 0
## 4196 700 2 65 0
## 4197 700 3 65 0
## 4198 700 4 110 0
## 4199 700 5 130 2
## 4200 700 6 60 0
## 4201 701 1 78 0
## 4202 701 2 92 2
## 4203 701 3 75 0
## 4204 701 4 74 0
## 4205 701 5 63 0
## 4206 701 6 118 0
## 4207 702 1 67 0
## 4208 702 2 58 0
## 4209 702 3 57 0
## 4210 702 4 81 0
## 4211 702 5 67 0
## 4212 702 6 101 2
## 4213 703 1 50 0
## 4214 703 2 50 0
## 4215 703 3 150 1
## 4216 703 4 50 0
## 4217 703 5 150 1
## 4218 703 6 50 0
## 4219 704 1 45 0
## 4220 704 2 50 0
## 4221 704 3 35 0
## 4222 704 4 55 0
## 4223 704 5 75 1
## 4224 704 6 40 0
## 4225 705 1 68 0
## 4226 705 2 75 0
## 4227 705 3 53 0
## 4228 705 4 83 0
## 4229 705 5 113 2
## 4230 705 6 60 0
## 4231 706 1 90 0
## 4232 706 2 100 0
## 4233 706 3 70 0
## 4234 706 4 110 0
## 4235 706 5 150 3
## 4236 706 6 80 0
## 4237 707 1 57 0
## 4238 707 2 80 0
## 4239 707 3 91 1
## 4240 707 4 80 0
## 4241 707 5 87 0
## 4242 707 6 75 0
## 4243 708 1 43 0
## 4244 708 2 70 1
## 4245 708 3 48 0
## 4246 708 4 50 0
## 4247 708 5 60 0
## 4248 708 6 38 0
## 4249 709 1 85 0
## 4250 709 2 110 2
## 4251 709 3 76 0
## 4252 709 4 65 0
## 4253 709 5 82 0
## 4254 709 6 56 0
## 4255 710 1 49 0
## 4256 710 2 66 0
## 4257 710 3 70 1
## 4258 710 4 44 0
## 4259 710 5 55 0
## 4260 710 6 51 0
## 4261 711 1 65 0
## 4262 711 2 90 0
## 4263 711 3 122 2
## 4264 711 4 58 0
## 4265 711 5 75 0
## 4266 711 6 84 0
## 4267 712 1 55 0
## 4268 712 2 69 0
## 4269 712 3 85 1
## 4270 712 4 32 0
## 4271 712 5 35 0
## 4272 712 6 28 0
## 4273 713 1 95 0
## 4274 713 2 117 0
## 4275 713 3 184 2
## 4276 713 4 44 0
## 4277 713 5 46 0
## 4278 713 6 28 0
## 4279 714 1 40 0
## 4280 714 2 30 0
## 4281 714 3 35 0
## 4282 714 4 45 0
## 4283 714 5 40 0
## 4284 714 6 55 1
## 4285 715 1 85 0
## 4286 715 2 70 0
## 4287 715 3 80 0
## 4288 715 4 97 0
## 4289 715 5 80 0
## 4290 715 6 123 2
## 4291 716 1 126 3
## 4292 716 2 131 0
## 4293 716 3 95 0
## 4294 716 4 131 0
## 4295 716 5 98 0
## 4296 716 6 99 0
## 4297 717 1 126 3
## 4298 717 2 131 0
## 4299 717 3 95 0
## 4300 717 4 131 0
## 4301 717 5 98 0
## 4302 717 6 99 0
## 4303 718 1 108 3
## 4304 718 2 100 0
## 4305 718 3 121 0
## 4306 718 4 81 0
## 4307 718 5 95 0
## 4308 718 6 95 0
## 4309 719 1 50 0
## 4310 719 2 100 0
## 4311 719 3 150 1
## 4312 719 4 100 0
## 4313 719 5 150 2
## 4314 719 6 50 0
## 4315 720 1 80 0
## 4316 720 2 110 0
## 4317 720 3 60 0
## 4318 720 4 150 3
## 4319 720 5 130 0
## 4320 720 6 70 0
## 4321 721 1 80 0
## 4322 721 2 110 0
## 4323 721 3 120 0
## 4324 721 4 130 3
## 4325 721 5 90 0
## 4326 721 6 70 0
## 4327 10001 1 50 0
## 4328 10001 2 180 2
## 4329 10001 3 20 0
## 4330 10001 4 180 1
## 4331 10001 5 20 0
## 4332 10001 6 150 0
## 4333 10002 1 50 0
## 4334 10002 2 70 0
## 4335 10002 3 160 2
## 4336 10002 4 70 0
## 4337 10002 5 160 1
## 4338 10002 6 90 0
## 4339 10003 1 50 0
## 4340 10003 2 95 0
## 4341 10003 3 90 0
## 4342 10003 4 95 0
## 4343 10003 5 90 0
## 4344 10003 6 180 3
## 4345 10004 1 60 0
## 4346 10004 2 79 0
## 4347 10004 3 105 2
## 4348 10004 4 59 0
## 4349 10004 5 85 0
## 4350 10004 6 36 0
## 4351 10005 1 60 0
## 4352 10005 2 69 0
## 4353 10005 3 95 1
## 4354 10005 4 69 0
## 4355 10005 5 95 1
## 4356 10005 6 36 0
## 4357 10006 1 100 0
## 4358 10006 2 103 0
## 4359 10006 3 75 0
## 4360 10006 4 120 0
## 4361 10006 5 75 0
## 4362 10006 6 127 3
## 4363 10007 1 150 3
## 4364 10007 2 120 0
## 4365 10007 3 100 0
## 4366 10007 4 120 0
## 4367 10007 5 100 0
## 4368 10007 6 90 0
## 4369 10008 1 50 0
## 4370 10008 2 65 0
## 4371 10008 3 107 0
## 4372 10008 4 105 1
## 4373 10008 5 107 0
## 4374 10008 6 86 1
## 4375 10009 1 50 0
## 4376 10009 2 65 0
## 4377 10009 3 107 0
## 4378 10009 4 105 1
## 4379 10009 5 107 0
## 4380 10009 6 86 1
## 4381 10010 1 50 0
## 4382 10010 2 65 0
## 4383 10010 3 107 0
## 4384 10010 4 105 1
## 4385 10010 5 107 0
## 4386 10010 6 86 1
## 4387 10011 1 50 0
## 4388 10011 2 65 0
## 4389 10011 3 107 0
## 4390 10011 4 105 1
## 4391 10011 5 107 0
## 4392 10011 6 86 1
## 4393 10012 1 50 0
## 4394 10012 2 65 0
## 4395 10012 3 107 0
## 4396 10012 4 105 1
## 4397 10012 5 107 0
## 4398 10012 6 86 1
## 4399 10013 1 70 1
## 4400 10013 2 70 0
## 4401 10013 3 70 0
## 4402 10013 4 70 0
## 4403 10013 5 70 0
## 4404 10013 6 70 0
## 4405 10014 1 70 1
## 4406 10014 2 70 0
## 4407 10014 3 70 0
## 4408 10014 4 70 0
## 4409 10014 5 70 0
## 4410 10014 6 70 0
## 4411 10015 1 70 1
## 4412 10015 2 70 0
## 4413 10015 3 70 0
## 4414 10015 4 70 0
## 4415 10015 5 70 0
## 4416 10015 6 70 0
## 4417 10016 1 70 0
## 4418 10016 2 92 0
## 4419 10016 3 65 0
## 4420 10016 4 80 0
## 4421 10016 5 55 0
## 4422 10016 6 98 2
## 4423 10017 1 105 0
## 4424 10017 2 30 0
## 4425 10017 3 105 0
## 4426 10017 4 140 2
## 4427 10017 5 105 0
## 4428 10017 6 55 0
## 4429 10018 1 100 0
## 4430 10018 2 128 1
## 4431 10018 3 90 1
## 4432 10018 4 77 0
## 4433 10018 5 77 0
## 4434 10018 6 128 1
## 4435 10019 1 79 0
## 4436 10019 2 100 0
## 4437 10019 3 80 0
## 4438 10019 4 110 0
## 4439 10019 5 90 0
## 4440 10019 6 121 3
## 4441 10020 1 79 0
## 4442 10020 2 105 0
## 4443 10020 3 70 0
## 4444 10020 4 145 3
## 4445 10020 5 80 0
## 4446 10020 6 101 0
## 4447 10021 1 89 0
## 4448 10021 2 145 3
## 4449 10021 3 90 0
## 4450 10021 4 105 0
## 4451 10021 5 80 0
## 4452 10021 6 91 0
## 4453 10022 1 125 0
## 4454 10022 2 170 3
## 4455 10022 3 100 0
## 4456 10022 4 120 0
## 4457 10022 5 90 0
## 4458 10022 6 95 0
## 4459 10023 1 125 0
## 4460 10023 2 120 0
## 4461 10023 3 90 0
## 4462 10023 4 170 3
## 4463 10023 5 100 0
## 4464 10023 6 95 0
## 4465 10024 1 91 0
## 4466 10024 2 72 0
## 4467 10024 3 90 0
## 4468 10024 4 129 3
## 4469 10024 5 90 0
## 4470 10024 6 108 0
## 4471 10025 1 74 0
## 4472 10025 2 48 0
## 4473 10025 3 76 0
## 4474 10025 4 83 0
## 4475 10025 5 81 0
## 4476 10025 6 104 2
## 4477 10026 1 60 0
## 4478 10026 2 150 2
## 4479 10026 3 50 0
## 4480 10026 4 150 1
## 4481 10026 5 50 0
## 4482 10026 6 60 0
## 4483 10027 1 44 0
## 4484 10027 2 66 0
## 4485 10027 3 70 1
## 4486 10027 4 44 0
## 4487 10027 5 55 0
## 4488 10027 6 56 0
## 4489 10028 1 54 0
## 4490 10028 2 66 0
## 4491 10028 3 70 1
## 4492 10028 4 44 0
## 4493 10028 5 55 0
## 4494 10028 6 46 0
## 4495 10029 1 59 0
## 4496 10029 2 66 0
## 4497 10029 3 70 1
## 4498 10029 4 44 0
## 4499 10029 5 55 0
## 4500 10029 6 41 0
## 4501 10030 1 55 0
## 4502 10030 2 85 0
## 4503 10030 3 122 2
## 4504 10030 4 58 0
## 4505 10030 5 75 0
## 4506 10030 6 99 0
## 4507 10031 1 75 0
## 4508 10031 2 95 0
## 4509 10031 3 122 2
## 4510 10031 4 58 0
## 4511 10031 5 75 0
## 4512 10031 6 69 0
## 4513 10032 1 85 0
## 4514 10032 2 100 0
## 4515 10032 3 122 2
## 4516 10032 4 58 0
## 4517 10032 5 75 0
## 4518 10032 6 54 0
## 4519 10033 1 80 0
## 4520 10033 2 100 0
## 4521 10033 3 123 0
## 4522 10033 4 122 2
## 4523 10033 5 120 1
## 4524 10033 6 80 0
## 4525 10034 1 78 0
## 4526 10034 2 130 0
## 4527 10034 3 111 0
## 4528 10034 4 130 3
## 4529 10034 5 85 0
## 4530 10034 6 100 0
## 4531 10035 1 78 0
## 4532 10035 2 104 0
## 4533 10035 3 78 0
## 4534 10035 4 159 3
## 4535 10035 5 115 0
## 4536 10035 6 100 0
## 4537 10036 1 79 0
## 4538 10036 2 103 0
## 4539 10036 3 120 0
## 4540 10036 4 135 0
## 4541 10036 5 115 3
## 4542 10036 6 78 0
## 4543 10037 1 55 0
## 4544 10037 2 50 0
## 4545 10037 3 65 0
## 4546 10037 4 175 3
## 4547 10037 5 95 0
## 4548 10037 6 150 0
## 4549 10038 1 60 0
## 4550 10038 2 65 0
## 4551 10038 3 80 0
## 4552 10038 4 170 3
## 4553 10038 5 95 0
## 4554 10038 6 130 0
## 4555 10039 1 105 2
## 4556 10039 2 125 0
## 4557 10039 3 100 0
## 4558 10039 4 60 0
## 4559 10039 5 100 0
## 4560 10039 6 100 0
## 4561 10040 1 65 0
## 4562 10040 2 155 2
## 4563 10040 3 120 0
## 4564 10040 4 65 0
## 4565 10040 5 90 0
## 4566 10040 6 105 0
## 4567 10041 1 95 0
## 4568 10041 2 155 2
## 4569 10041 3 109 0
## 4570 10041 4 70 0
## 4571 10041 5 130 0
## 4572 10041 6 81 0
## 4573 10042 1 80 0
## 4574 10042 2 135 0
## 4575 10042 3 85 0
## 4576 10042 4 70 0
## 4577 10042 5 95 0
## 4578 10042 6 150 2
## 4579 10043 1 106 0
## 4580 10043 2 190 0
## 4581 10043 3 100 0
## 4582 10043 4 154 3
## 4583 10043 5 100 0
## 4584 10043 6 130 0
## 4585 10044 1 106 0
## 4586 10044 2 150 0
## 4587 10044 3 70 0
## 4588 10044 4 194 3
## 4589 10044 5 120 0
## 4590 10044 6 140 0
## 4591 10045 1 90 0
## 4592 10045 2 95 0
## 4593 10045 3 105 0
## 4594 10045 4 165 3
## 4595 10045 5 110 0
## 4596 10045 6 45 0
## 4597 10046 1 70 0
## 4598 10046 2 150 2
## 4599 10046 3 140 0
## 4600 10046 4 65 0
## 4601 10046 5 100 0
## 4602 10046 6 75 0
## 4603 10047 1 80 0
## 4604 10047 2 185 2
## 4605 10047 3 115 0
## 4606 10047 4 40 0
## 4607 10047 5 105 0
## 4608 10047 6 75 0
## 4609 10048 1 75 0
## 4610 10048 2 90 0
## 4611 10048 3 90 0
## 4612 10048 4 140 2
## 4613 10048 5 90 0
## 4614 10048 6 115 0
## 4615 10049 1 100 0
## 4616 10049 2 164 3
## 4617 10049 3 150 0
## 4618 10049 4 95 0
## 4619 10049 5 120 0
## 4620 10049 6 71 0
## 4621 10050 1 80 0
## 4622 10050 2 160 3
## 4623 10050 3 80 0
## 4624 10050 4 130 0
## 4625 10050 5 80 0
## 4626 10050 6 100 0
## 4627 10051 1 68 0
## 4628 10051 2 85 0
## 4629 10051 3 65 0
## 4630 10051 4 165 3
## 4631 10051 5 135 0
## 4632 10051 6 100 0
## 4633 10052 1 50 0
## 4634 10052 2 105 1
## 4635 10052 3 125 1
## 4636 10052 4 55 0
## 4637 10052 5 95 0
## 4638 10052 6 50 0
## 4639 10053 1 70 0
## 4640 10053 2 140 0
## 4641 10053 3 230 3
## 4642 10053 4 60 0
## 4643 10053 5 80 0
## 4644 10053 6 50 0
## 4645 10054 1 60 0
## 4646 10054 2 100 0
## 4647 10054 3 85 0
## 4648 10054 4 80 0
## 4649 10054 5 85 0
## 4650 10054 6 100 2
## 4651 10055 1 70 0
## 4652 10055 2 75 0
## 4653 10055 3 80 0
## 4654 10055 4 135 0
## 4655 10055 5 80 0
## 4656 10055 6 135 2
## 4657 10056 1 64 0
## 4658 10056 2 165 2
## 4659 10056 3 75 0
## 4660 10056 4 93 0
## 4661 10056 5 83 0
## 4662 10056 6 75 0
## 4663 10057 1 65 0
## 4664 10057 2 150 2
## 4665 10057 3 60 0
## 4666 10057 4 115 0
## 4667 10057 5 60 0
## 4668 10057 6 115 0
## 4669 10058 1 108 0
## 4670 10058 2 170 3
## 4671 10058 3 115 0
## 4672 10058 4 120 0
## 4673 10058 5 95 0
## 4674 10058 6 92 0
## 4675 10059 1 70 0
## 4676 10059 2 145 1
## 4677 10059 3 88 0
## 4678 10059 4 140 1
## 4679 10059 5 70 0
## 4680 10059 6 112 0
## 4681 10060 1 90 0
## 4682 10060 2 132 1
## 4683 10060 3 105 0
## 4684 10060 4 132 1
## 4685 10060 5 105 0
## 4686 10060 6 30 0
## 4687 10061 1 74 0
## 4688 10061 2 65 0
## 4689 10061 3 67 0
## 4690 10061 4 125 0
## 4691 10061 5 128 2
## 4692 10061 6 92 0
## 4693 10062 1 80 0
## 4694 10062 2 100 0
## 4695 10062 3 120 0
## 4696 10062 4 140 0
## 4697 10062 5 150 3
## 4698 10062 6 110 0
## 4699 10063 1 80 0
## 4700 10063 2 130 0
## 4701 10063 3 100 0
## 4702 10063 4 160 3
## 4703 10063 5 120 0
## 4704 10063 6 110 0
## 4705 10064 1 100 0
## 4706 10064 2 150 3
## 4707 10064 3 110 0
## 4708 10064 4 95 0
## 4709 10064 5 110 0
## 4710 10064 6 70 0
## 4711 10065 1 70 0
## 4712 10065 2 110 0
## 4713 10065 3 75 0
## 4714 10065 4 145 0
## 4715 10065 5 85 0
## 4716 10065 6 145 3
## 4717 10066 1 50 0
## 4718 10066 2 85 1
## 4719 10066 3 125 1
## 4720 10066 4 85 0
## 4721 10066 5 115 0
## 4722 10066 6 20 0
## 4723 10067 1 75 0
## 4724 10067 2 110 0
## 4725 10067 3 110 0
## 4726 10067 4 110 0
## 4727 10067 5 105 2
## 4728 10067 6 80 0
## 4729 10068 1 68 0
## 4730 10068 2 165 3
## 4731 10068 3 95 0
## 4732 10068 4 65 0
## 4733 10068 5 115 0
## 4734 10068 6 110 0
## 4735 10069 1 103 2
## 4736 10069 2 60 0
## 4737 10069 3 126 0
## 4738 10069 4 80 0
## 4739 10069 5 126 0
## 4740 10069 6 50 0
## 4741 10070 1 70 0
## 4742 10070 2 140 2
## 4743 10070 3 70 0
## 4744 10070 4 110 0
## 4745 10070 5 65 0
## 4746 10070 6 105 0
## 4747 10071 1 95 0
## 4748 10071 2 75 0
## 4749 10071 3 180 2
## 4750 10071 4 130 0
## 4751 10071 5 80 0
## 4752 10071 6 30 0
## 4753 10072 1 75 0
## 4754 10072 2 125 0
## 4755 10072 3 230 2
## 4756 10072 4 55 0
## 4757 10072 5 95 0
## 4758 10072 6 30 0
## 4759 10073 1 83 0
## 4760 10073 2 80 0
## 4761 10073 3 80 0
## 4762 10073 4 135 0
## 4763 10073 5 80 0
## 4764 10073 6 121 3
## 4765 10074 1 80 2
## 4766 10074 2 120 0
## 4767 10074 3 80 0
## 4768 10074 4 120 0
## 4769 10074 5 80 0
## 4770 10074 6 100 0
## 4771 10075 1 50 0
## 4772 10075 2 160 0
## 4773 10075 3 110 1
## 4774 10075 4 160 0
## 4775 10075 5 110 2
## 4776 10075 6 110 0
## 4777 10076 1 80 0
## 4778 10076 2 145 0
## 4779 10076 3 150 3
## 4780 10076 4 105 0
## 4781 10076 5 110 0
## 4782 10076 6 110 0
## 4783 10077 1 100 0
## 4784 10077 2 150 0
## 4785 10077 3 90 0
## 4786 10077 4 180 3
## 4787 10077 5 160 0
## 4788 10077 6 90 0
## 4789 10078 1 100 0
## 4790 10078 2 180 3
## 4791 10078 3 160 0
## 4792 10078 4 150 0
## 4793 10078 5 90 0
## 4794 10078 6 90 0
## 4795 10079 1 105 0
## 4796 10079 2 180 2
## 4797 10079 3 100 0
## 4798 10079 4 180 1
## 4799 10079 5 100 0
## 4800 10079 6 115 0
## 4801 10080 1 35 0
## 4802 10080 2 55 0
## 4803 10080 3 40 0
## 4804 10080 4 50 0
## 4805 10080 5 50 0
## 4806 10080 6 90 2
## 4807 10081 1 35 0
## 4808 10081 2 55 0
## 4809 10081 3 40 0
## 4810 10081 4 50 0
## 4811 10081 5 50 0
## 4812 10081 6 90 2
## 4813 10082 1 35 0
## 4814 10082 2 55 0
## 4815 10082 3 40 0
## 4816 10082 4 50 0
## 4817 10082 5 50 0
## 4818 10082 6 90 2
## 4819 10083 1 35 0
## 4820 10083 2 55 0
## 4821 10083 3 40 0
## 4822 10083 4 50 0
## 4823 10083 5 50 0
## 4824 10083 6 90 2
## 4825 10084 1 35 0
## 4826 10084 2 55 0
## 4827 10084 3 40 0
## 4828 10084 4 50 0
## 4829 10084 5 50 0
## 4830 10084 6 90 2
## 4831 10085 1 35 0
## 4832 10085 2 55 0
## 4833 10085 3 40 0
## 4834 10085 4 50 0
## 4835 10085 5 50 0
## 4836 10085 6 90 2
## 4837 10086 1 80 0
## 4838 10086 2 160 0
## 4839 10086 3 60 0
## 4840 10086 4 170 3
## 4841 10086 5 130 0
## 4842 10086 6 80 0
## 4843 10087 1 70 0
## 4844 10087 2 120 1
## 4845 10087 3 100 0
## 4846 10087 4 145 1
## 4847 10087 5 105 0
## 4848 10087 6 20 0
## 4849 10088 1 65 0
## 4850 10088 2 136 0
## 4851 10088 3 94 0
## 4852 10088 4 54 0
## 4853 10088 5 96 0
## 4854 10088 6 135 2
## 4855 10089 1 95 0
## 4856 10089 2 145 3
## 4857 10089 3 130 0
## 4858 10089 4 120 0
## 4859 10089 5 90 0
## 4860 10089 6 120 0
## 4861 10090 1 65 0
## 4862 10090 2 150 2
## 4863 10090 3 40 0
## 4864 10090 4 15 0
## 4865 10090 5 80 1
## 4866 10090 6 145 0
dbGetQuery(pokemonDatabase, "PRAGMA FOREIGN_KEY_LIST(pokemon_stats)")
## id seq table from to on_update on_delete match
## 1 0 0 stats stat_id id NO ACTION NO ACTION NONE
## 2 1 0 pokemon pokemon_id id NO ACTION NO ACTION NONE
# getting the total base stat of each pokemon
dbGetQuery(pokemonDatabase, "
SELECT pokemon_id, SUM(base_stat)
FROM pokemon_stats
GROUP BY pokemon_id
")
## pokemon_id SUM(base_stat)
## 1 1 318
## 2 2 405
## 3 3 525
## 4 4 309
## 5 5 405
## 6 6 534
## 7 7 314
## 8 8 405
## 9 9 530
## 10 10 195
## 11 11 205
## 12 12 395
## 13 13 195
## 14 14 205
## 15 15 395
## 16 16 251
## 17 17 349
## 18 18 479
## 19 19 253
## 20 20 413
## 21 21 262
## 22 22 442
## 23 23 288
## 24 24 438
## 25 25 320
## 26 26 485
## 27 27 300
## 28 28 450
## 29 29 275
## 30 30 365
## 31 31 505
## 32 32 273
## 33 33 365
## 34 34 505
## 35 35 323
## 36 36 483
## 37 37 299
## 38 38 505
## 39 39 270
## 40 40 435
## 41 41 245
## 42 42 455
## 43 43 320
## 44 44 395
## 45 45 490
## 46 46 285
## 47 47 405
## 48 48 305
## 49 49 450
## 50 50 265
## 51 51 405
## 52 52 290
## 53 53 440
## 54 54 320
## 55 55 500
## 56 56 305
## 57 57 455
## 58 58 350
## 59 59 555
## 60 60 300
## 61 61 385
## 62 62 510
## 63 63 310
## 64 64 400
## 65 65 500
## 66 66 305
## 67 67 405
## 68 68 505
## 69 69 300
## 70 70 390
## 71 71 490
## 72 72 335
## 73 73 515
## 74 74 300
## 75 75 390
## 76 76 495
## 77 77 410
## 78 78 500
## 79 79 315
## 80 80 490
## 81 81 325
## 82 82 465
## 83 83 352
## 84 84 310
## 85 85 460
## 86 86 325
## 87 87 475
## 88 88 325
## 89 89 500
## 90 90 305
## 91 91 525
## 92 92 310
## 93 93 405
## 94 94 500
## 95 95 385
## 96 96 328
## 97 97 483
## 98 98 325
## 99 99 475
## 100 100 330
## 101 101 480
## 102 102 325
## 103 103 520
## 104 104 320
## 105 105 425
## 106 106 455
## 107 107 455
## 108 108 385
## 109 109 340
## 110 110 490
## 111 111 345
## 112 112 485
## 113 113 450
## 114 114 435
## 115 115 490
## 116 116 295
## 117 117 440
## 118 118 320
## 119 119 450
## 120 120 340
## 121 121 520
## 122 122 460
## 123 123 500
## 124 124 455
## 125 125 490
## 126 126 495
## 127 127 500
## 128 128 490
## 129 129 200
## 130 130 540
## 131 131 535
## 132 132 288
## 133 133 325
## 134 134 525
## 135 135 525
## 136 136 525
## 137 137 395
## 138 138 355
## 139 139 495
## 140 140 355
## 141 141 495
## 142 142 515
## 143 143 540
## 144 144 580
## 145 145 580
## 146 146 580
## 147 147 300
## 148 148 420
## 149 149 600
## 150 150 680
## 151 151 600
## 152 152 318
## 153 153 405
## 154 154 525
## 155 155 309
## 156 156 405
## 157 157 534
## 158 158 314
## 159 159 405
## 160 160 530
## 161 161 215
## 162 162 415
## 163 163 262
## 164 164 442
## 165 165 265
## 166 166 390
## 167 167 250
## 168 168 390
## 169 169 535
## 170 170 330
## 171 171 460
## 172 172 205
## 173 173 218
## 174 174 210
## 175 175 245
## 176 176 405
## 177 177 320
## 178 178 470
## 179 179 280
## 180 180 365
## 181 181 510
## 182 182 490
## 183 183 250
## 184 184 420
## 185 185 410
## 186 186 500
## 187 187 250
## 188 188 340
## 189 189 460
## 190 190 360
## 191 191 180
## 192 192 425
## 193 193 390
## 194 194 210
## 195 195 430
## 196 196 525
## 197 197 525
## 198 198 405
## 199 199 490
## 200 200 435
## 201 201 336
## 202 202 405
## 203 203 455
## 204 204 290
## 205 205 465
## 206 206 415
## 207 207 430
## 208 208 510
## 209 209 300
## 210 210 450
## 211 211 430
## 212 212 500
## 213 213 505
## 214 214 500
## 215 215 430
## 216 216 330
## 217 217 500
## 218 218 250
## 219 219 410
## 220 220 250
## 221 221 450
## 222 222 380
## 223 223 300
## 224 224 480
## 225 225 330
## 226 226 465
## 227 227 465
## 228 228 330
## 229 229 500
## 230 230 540
## 231 231 330
## 232 232 500
## 233 233 515
## 234 234 465
## 235 235 250
## 236 236 210
## 237 237 455
## 238 238 305
## 239 239 360
## 240 240 365
## 241 241 490
## 242 242 540
## 243 243 580
## 244 244 580
## 245 245 580
## 246 246 300
## 247 247 410
## 248 248 600
## 249 249 680
## 250 250 680
## 251 251 600
## 252 252 310
## 253 253 405
## 254 254 530
## 255 255 310
## 256 256 405
## 257 257 530
## 258 258 310
## 259 259 405
## 260 260 535
## 261 261 220
## 262 262 420
## 263 263 240
## 264 264 420
## 265 265 195
## 266 266 205
## 267 267 395
## 268 268 205
## 269 269 385
## 270 270 220
## 271 271 340
## 272 272 480
## 273 273 220
## 274 274 340
## 275 275 480
## 276 276 270
## 277 277 430
## 278 278 270
## 279 279 430
## 280 280 198
## 281 281 278
## 282 282 518
## 283 283 269
## 284 284 414
## 285 285 295
## 286 286 460
## 287 287 280
## 288 288 440
## 289 289 670
## 290 290 266
## 291 291 456
## 292 292 236
## 293 293 240
## 294 294 360
## 295 295 490
## 296 296 237
## 297 297 474
## 298 298 190
## 299 299 375
## 300 300 260
## 301 301 380
## 302 302 380
## 303 303 380
## 304 304 330
## 305 305 430
## 306 306 530
## 307 307 280
## 308 308 410
## 309 309 295
## 310 310 475
## 311 311 405
## 312 312 405
## 313 313 400
## 314 314 400
## 315 315 400
## 316 316 302
## 317 317 467
## 318 318 305
## 319 319 460
## 320 320 400
## 321 321 500
## 322 322 305
## 323 323 460
## 324 324 470
## 325 325 330
## 326 326 470
## 327 327 360
## 328 328 290
## 329 329 340
## 330 330 520
## 331 331 335
## 332 332 475
## 333 333 310
## 334 334 490
## 335 335 458
## 336 336 458
## 337 337 440
## 338 338 440
## 339 339 288
## 340 340 468
## 341 341 308
## 342 342 468
## 343 343 300
## 344 344 500
## 345 345 355
## 346 346 495
## 347 347 355
## 348 348 495
## 349 349 200
## 350 350 540
## 351 351 420
## 352 352 440
## 353 353 295
## 354 354 455
## 355 355 295
## 356 356 455
## 357 357 460
## 358 358 425
## 359 359 465
## 360 360 260
## 361 361 300
## 362 362 480
## 363 363 290
## 364 364 410
## 365 365 530
## 366 366 345
## 367 367 485
## 368 368 485
## 369 369 485
## 370 370 330
## 371 371 300
## 372 372 420
## 373 373 600
## 374 374 300
## 375 375 420
## 376 376 600
## 377 377 580
## 378 378 580
## 379 379 580
## 380 380 600
## 381 381 600
## 382 382 670
## 383 383 670
## 384 384 680
## 385 385 600
## 386 386 600
## 387 387 318
## 388 388 405
## 389 389 525
## 390 390 309
## 391 391 405
## 392 392 534
## 393 393 314
## 394 394 405
## 395 395 530
## 396 396 245
## 397 397 340
## 398 398 485
## 399 399 250
## 400 400 410
## 401 401 194
## 402 402 384
## 403 403 263
## 404 404 363
## 405 405 523
## 406 406 280
## 407 407 515
## 408 408 350
## 409 409 495
## 410 410 350
## 411 411 495
## 412 412 224
## 413 413 424
## 414 414 424
## 415 415 244
## 416 416 474
## 417 417 405
## 418 418 330
## 419 419 495
## 420 420 275
## 421 421 450
## 422 422 325
## 423 423 475
## 424 424 482
## 425 425 348
## 426 426 498
## 427 427 350
## 428 428 480
## 429 429 495
## 430 430 505
## 431 431 310
## 432 432 452
## 433 433 285
## 434 434 329
## 435 435 479
## 436 436 300
## 437 437 500
## 438 438 290
## 439 439 310
## 440 440 220
## 441 441 411
## 442 442 485
## 443 443 300
## 444 444 410
## 445 445 600
## 446 446 390
## 447 447 285
## 448 448 525
## 449 449 330
## 450 450 525
## 451 451 330
## 452 452 500
## 453 453 300
## 454 454 490
## 455 455 454
## 456 456 330
## 457 457 460
## 458 458 345
## 459 459 334
## 460 460 494
## 461 461 510
## 462 462 535
## 463 463 515
## 464 464 535
## 465 465 535
## 466 466 540
## 467 467 540
## 468 468 545
## 469 469 515
## 470 470 525
## 471 471 525
## 472 472 510
## 473 473 530
## 474 474 535
## 475 475 518
## 476 476 525
## 477 477 525
## 478 478 480
## 479 479 440
## 480 480 580
## 481 481 580
## 482 482 580
## 483 483 680
## 484 484 680
## 485 485 600
## 486 486 670
## 487 487 680
## 488 488 600
## 489 489 480
## 490 490 600
## 491 491 600
## 492 492 600
## 493 493 720
## 494 494 600
## 495 495 308
## 496 496 413
## 497 497 528
## 498 498 308
## 499 499 418
## 500 500 528
## 501 501 308
## 502 502 413
## 503 503 528
## 504 504 255
## 505 505 420
## 506 506 275
## 507 507 370
## 508 508 500
## 509 509 281
## 510 510 446
## 511 511 316
## 512 512 498
## 513 513 316
## 514 514 498
## 515 515 316
## 516 516 498
## 517 517 292
## 518 518 487
## 519 519 264
## 520 520 358
## 521 521 488
## 522 522 295
## 523 523 497
## 524 524 280
## 525 525 390
## 526 526 515
## 527 527 313
## 528 528 425
## 529 529 328
## 530 530 508
## 531 531 445
## 532 532 305
## 533 533 405
## 534 534 505
## 535 535 294
## 536 536 384
## 537 537 509
## 538 538 465
## 539 539 465
## 540 540 310
## 541 541 380
## 542 542 500
## 543 543 260
## 544 544 360
## 545 545 485
## 546 546 280
## 547 547 480
## 548 548 280
## 549 549 480
## 550 550 460
## 551 551 292
## 552 552 351
## 553 553 519
## 554 554 315
## 555 555 480
## 556 556 461
## 557 557 325
## 558 558 475
## 559 559 348
## 560 560 488
## 561 561 490
## 562 562 303
## 563 563 483
## 564 564 355
## 565 565 495
## 566 566 401
## 567 567 567
## 568 568 329
## 569 569 474
## 570 570 330
## 571 571 510
## 572 572 300
## 573 573 470
## 574 574 290
## 575 575 390
## 576 576 490
## 577 577 290
## 578 578 370
## 579 579 490
## 580 580 305
## 581 581 473
## 582 582 305
## 583 583 395
## 584 584 535
## 585 585 335
## 586 586 475
## 587 587 428
## 588 588 315
## 589 589 495
## 590 590 294
## 591 591 464
## 592 592 335
## 593 593 480
## 594 594 470
## 595 595 319
## 596 596 472
## 597 597 305
## 598 598 489
## 599 599 300
## 600 600 440
## 601 601 520
## 602 602 275
## 603 603 405
## 604 604 515
## 605 605 335
## 606 606 485
## 607 607 275
## 608 608 370
## 609 609 520
## 610 610 320
## 611 611 410
## 612 612 540
## 613 613 305
## 614 614 485
## 615 615 485
## 616 616 305
## 617 617 495
## 618 618 471
## 619 619 350
## 620 620 510
## 621 621 485
## 622 622 303
## 623 623 483
## 624 624 340
## 625 625 490
## 626 626 490
## 627 627 350
## 628 628 510
## 629 629 370
## 630 630 510
## 631 631 484
## 632 632 484
## 633 633 300
## 634 634 420
## 635 635 600
## 636 636 360
## 637 637 550
## 638 638 580
## 639 639 580
## 640 640 580
## 641 641 580
## 642 642 580
## 643 643 680
## 644 644 680
## 645 645 600
## 646 646 660
## 647 647 580
## 648 648 600
## 649 649 600
## 650 650 313
## 651 651 405
## 652 652 530
## 653 653 307
## 654 654 409
## 655 655 534
## 656 656 314
## 657 657 405
## 658 658 530
## 659 659 237
## 660 660 423
## 661 661 278
## 662 662 382
## 663 663 499
## 664 664 200
## 665 665 213
## 666 666 411
## 667 667 369
## 668 668 507
## 669 669 303
## 670 670 371
## 671 671 552
## 672 672 350
## 673 673 531
## 674 674 348
## 675 675 495
## 676 676 472
## 677 677 355
## 678 678 466
## 679 679 325
## 680 680 448
## 681 681 520
## 682 682 341
## 683 683 462
## 684 684 341
## 685 685 480
## 686 686 288
## 687 687 482
## 688 688 306
## 689 689 500
## 690 690 320
## 691 691 494
## 692 692 330
## 693 693 500
## 694 694 289
## 695 695 481
## 696 696 362
## 697 697 521
## 698 698 362
## 699 699 521
## 700 700 525
## 701 701 500
## 702 702 431
## 703 703 500
## 704 704 300
## 705 705 452
## 706 706 600
## 707 707 470
## 708 708 309
## 709 709 474
## 710 710 335
## 711 711 494
## 712 712 304
## 713 713 514
## 714 714 245
## 715 715 535
## 716 716 680
## 717 717 680
## 718 718 600
## 719 719 600
## 720 720 600
## 721 721 600
## 722 10001 600
## 723 10002 600
## 724 10003 600
## 725 10004 424
## 726 10005 424
## 727 10006 600
## 728 10007 680
## 729 10008 520
## 730 10009 520
## 731 10010 520
## 732 10011 520
## 733 10012 520
## 734 10013 420
## 735 10014 420
## 736 10015 420
## 737 10016 460
## 738 10017 540
## 739 10018 600
## 740 10019 580
## 741 10020 580
## 742 10021 600
## 743 10022 700
## 744 10023 700
## 745 10024 580
## 746 10025 466
## 747 10026 520
## 748 10027 335
## 749 10028 335
## 750 10029 335
## 751 10030 494
## 752 10031 494
## 753 10032 494
## 754 10033 625
## 755 10034 634
## 756 10035 634
## 757 10036 630
## 758 10037 590
## 759 10038 600
## 760 10039 590
## 761 10040 600
## 762 10041 640
## 763 10042 615
## 764 10043 780
## 765 10044 780
## 766 10045 610
## 767 10046 600
## 768 10047 600
## 769 10048 600
## 770 10049 700
## 771 10050 630
## 772 10051 618
## 773 10052 480
## 774 10053 630
## 775 10054 510
## 776 10055 575
## 777 10056 555
## 778 10057 565
## 779 10058 700
## 780 10059 625
## 781 10060 594
## 782 10061 551
## 783 10062 700
## 784 10063 700
## 785 10064 635
## 786 10065 630
## 787 10066 480
## 788 10067 590
## 789 10068 618
## 790 10069 545
## 791 10070 560
## 792 10071 590
## 793 10072 610
## 794 10073 579
## 795 10074 580
## 796 10075 700
## 797 10076 700
## 798 10077 770
## 799 10078 770
## 800 10079 780
## 801 10080 320
## 802 10081 320
## 803 10082 320
## 804 10083 320
## 805 10084 320
## 806 10085 320
## 807 10086 680
## 808 10087 560
## 809 10088 580
## 810 10089 700
## 811 10090 495
dbGetQuery(pokemonDatabase, "
SELECT pokemon_abilities.pokemon_id, pokemon.identifier, pokemon_abilities.ability_id, abilities.identifier, SUM(pokemon_stats.base_stat)
FROM pokemon_abilities
INNER JOIN abilities ON pokemon_abilities.ability_id = abilities.id
INNER JOIN pokemon ON pokemon_abilities.pokemon_id = pokemon.id
INNER JOIN pokemon_stats ON pokemon.id = pokemon_stats.pokemon_id
GROUP BY pokemon_abilities.pokemon_id, abilities.identifier
")
## pokemon_id identifier ability_id identifier
## 1 1 bulbasaur 34 chlorophyll
## 2 1 bulbasaur 65 overgrow
## 3 2 ivysaur 34 chlorophyll
## 4 2 ivysaur 65 overgrow
## 5 3 venusaur 34 chlorophyll
## 6 3 venusaur 65 overgrow
## 7 4 charmander 66 blaze
## 8 4 charmander 94 solar-power
## 9 5 charmeleon 66 blaze
## 10 5 charmeleon 94 solar-power
## 11 6 charizard 66 blaze
## 12 6 charizard 94 solar-power
## 13 7 squirtle 44 rain-dish
## 14 7 squirtle 67 torrent
## 15 8 wartortle 44 rain-dish
## 16 8 wartortle 67 torrent
## 17 9 blastoise 44 rain-dish
## 18 9 blastoise 67 torrent
## 19 10 caterpie 50 run-away
## 20 10 caterpie 19 shield-dust
## 21 11 metapod 61 shed-skin
## 22 12 butterfree 14 compound-eyes
## 23 12 butterfree 110 tinted-lens
## 24 13 weedle 50 run-away
## 25 13 weedle 19 shield-dust
## 26 14 kakuna 61 shed-skin
## 27 15 beedrill 97 sniper
## 28 15 beedrill 68 swarm
## 29 16 pidgey 145 big-pecks
## 30 16 pidgey 51 keen-eye
## 31 16 pidgey 77 tangled-feet
## 32 17 pidgeotto 145 big-pecks
## 33 17 pidgeotto 51 keen-eye
## 34 17 pidgeotto 77 tangled-feet
## 35 18 pidgeot 145 big-pecks
## 36 18 pidgeot 51 keen-eye
## 37 18 pidgeot 77 tangled-feet
## 38 19 rattata 62 guts
## 39 19 rattata 55 hustle
## 40 19 rattata 50 run-away
## 41 20 raticate 62 guts
## 42 20 raticate 55 hustle
## 43 20 raticate 50 run-away
## 44 21 spearow 51 keen-eye
## 45 21 spearow 97 sniper
## 46 22 fearow 51 keen-eye
## 47 22 fearow 97 sniper
## 48 23 ekans 22 intimidate
## 49 23 ekans 61 shed-skin
## 50 23 ekans 127 unnerve
## 51 24 arbok 22 intimidate
## 52 24 arbok 61 shed-skin
## 53 24 arbok 127 unnerve
## 54 25 pikachu 31 lightning-rod
## 55 25 pikachu 9 static
## 56 26 raichu 31 lightning-rod
## 57 26 raichu 9 static
## 58 27 sandshrew 146 sand-rush
## 59 27 sandshrew 8 sand-veil
## 60 28 sandslash 146 sand-rush
## 61 28 sandslash 8 sand-veil
## 62 29 nidoran-f 55 hustle
## 63 29 nidoran-f 38 poison-point
## 64 29 nidoran-f 79 rivalry
## 65 30 nidorina 55 hustle
## 66 30 nidorina 38 poison-point
## 67 30 nidorina 79 rivalry
## 68 31 nidoqueen 38 poison-point
## 69 31 nidoqueen 79 rivalry
## 70 31 nidoqueen 125 sheer-force
## 71 32 nidoran-m 55 hustle
## 72 32 nidoran-m 38 poison-point
## 73 32 nidoran-m 79 rivalry
## 74 33 nidorino 55 hustle
## 75 33 nidorino 38 poison-point
## 76 33 nidorino 79 rivalry
## 77 34 nidoking 38 poison-point
## 78 34 nidoking 79 rivalry
## 79 34 nidoking 125 sheer-force
## 80 35 clefairy 56 cute-charm
## 81 35 clefairy 132 friend-guard
## 82 35 clefairy 98 magic-guard
## 83 36 clefable 56 cute-charm
## 84 36 clefable 98 magic-guard
## 85 36 clefable 109 unaware
## 86 37 vulpix 70 drought
## 87 37 vulpix 18 flash-fire
## 88 38 ninetales 70 drought
## 89 38 ninetales 18 flash-fire
## 90 39 jigglypuff 172 competitive
## 91 39 jigglypuff 56 cute-charm
## 92 39 jigglypuff 132 friend-guard
## 93 40 wigglytuff 172 competitive
## 94 40 wigglytuff 56 cute-charm
## 95 40 wigglytuff 119 frisk
## 96 41 zubat 151 infiltrator
## 97 41 zubat 39 inner-focus
## 98 42 golbat 151 infiltrator
## 99 42 golbat 39 inner-focus
## 100 43 oddish 34 chlorophyll
## 101 43 oddish 50 run-away
## 102 44 gloom 34 chlorophyll
## 103 44 gloom 1 stench
## 104 45 vileplume 34 chlorophyll
## 105 45 vileplume 27 effect-spore
## 106 46 paras 6 damp
## 107 46 paras 87 dry-skin
## 108 46 paras 27 effect-spore
## 109 47 parasect 6 damp
## 110 47 parasect 87 dry-skin
## 111 47 parasect 27 effect-spore
## 112 48 venonat 14 compound-eyes
## 113 48 venonat 50 run-away
## 114 48 venonat 110 tinted-lens
## 115 49 venomoth 19 shield-dust
## 116 49 venomoth 110 tinted-lens
## 117 49 venomoth 147 wonder-skin
## 118 50 diglett 71 arena-trap
## 119 50 diglett 159 sand-force
## 120 50 diglett 8 sand-veil
## 121 51 dugtrio 71 arena-trap
## 122 51 dugtrio 159 sand-force
## 123 51 dugtrio 8 sand-veil
## 124 52 meowth 53 pickup
## 125 52 meowth 101 technician
## 126 52 meowth 127 unnerve
## 127 53 persian 7 limber
## 128 53 persian 101 technician
## 129 53 persian 127 unnerve
## 130 54 psyduck 13 cloud-nine
## 131 54 psyduck 6 damp
## 132 54 psyduck 33 swift-swim
## 133 55 golduck 13 cloud-nine
## 134 55 golduck 6 damp
## 135 55 golduck 33 swift-swim
## 136 56 mankey 83 anger-point
## 137 56 mankey 128 defiant
## 138 56 mankey 72 vital-spirit
## 139 57 primeape 83 anger-point
## 140 57 primeape 128 defiant
## 141 57 primeape 72 vital-spirit
## 142 58 growlithe 18 flash-fire
## 143 58 growlithe 22 intimidate
## 144 58 growlithe 154 justified
## 145 59 arcanine 18 flash-fire
## 146 59 arcanine 22 intimidate
## 147 59 arcanine 154 justified
## 148 60 poliwag 6 damp
## 149 60 poliwag 33 swift-swim
## 150 60 poliwag 11 water-absorb
## 151 61 poliwhirl 6 damp
## 152 61 poliwhirl 33 swift-swim
## 153 61 poliwhirl 11 water-absorb
## 154 62 poliwrath 6 damp
## 155 62 poliwrath 33 swift-swim
## 156 62 poliwrath 11 water-absorb
## 157 63 abra 39 inner-focus
## 158 63 abra 98 magic-guard
## 159 63 abra 28 synchronize
## 160 64 kadabra 39 inner-focus
## 161 64 kadabra 98 magic-guard
## 162 64 kadabra 28 synchronize
## 163 65 alakazam 39 inner-focus
## 164 65 alakazam 98 magic-guard
## 165 65 alakazam 28 synchronize
## 166 66 machop 62 guts
## 167 66 machop 99 no-guard
## 168 66 machop 80 steadfast
## 169 67 machoke 62 guts
## 170 67 machoke 99 no-guard
## 171 67 machoke 80 steadfast
## 172 68 machamp 62 guts
## 173 68 machamp 99 no-guard
## 174 68 machamp 80 steadfast
## 175 69 bellsprout 34 chlorophyll
## 176 69 bellsprout 82 gluttony
## 177 70 weepinbell 34 chlorophyll
## 178 70 weepinbell 82 gluttony
## 179 71 victreebel 34 chlorophyll
## 180 71 victreebel 82 gluttony
## 181 72 tentacool 29 clear-body
## 182 72 tentacool 64 liquid-ooze
## 183 72 tentacool 44 rain-dish
## 184 73 tentacruel 29 clear-body
## 185 73 tentacruel 64 liquid-ooze
## 186 73 tentacruel 44 rain-dish
## 187 74 geodude 69 rock-head
## 188 74 geodude 8 sand-veil
## 189 74 geodude 5 sturdy
## 190 75 graveler 69 rock-head
## 191 75 graveler 8 sand-veil
## 192 75 graveler 5 sturdy
## 193 76 golem 69 rock-head
## 194 76 golem 8 sand-veil
## 195 76 golem 5 sturdy
## 196 77 ponyta 49 flame-body
## 197 77 ponyta 18 flash-fire
## 198 77 ponyta 50 run-away
## 199 78 rapidash 49 flame-body
## 200 78 rapidash 18 flash-fire
## 201 78 rapidash 50 run-away
## 202 79 slowpoke 12 oblivious
## 203 79 slowpoke 20 own-tempo
## 204 79 slowpoke 144 regenerator
## 205 80 slowbro 12 oblivious
## 206 80 slowbro 20 own-tempo
## 207 80 slowbro 144 regenerator
## 208 81 magnemite 148 analytic
## 209 81 magnemite 42 magnet-pull
## 210 81 magnemite 5 sturdy
## 211 82 magneton 148 analytic
## 212 82 magneton 42 magnet-pull
## 213 82 magneton 5 sturdy
## 214 83 farfetchd 128 defiant
## 215 83 farfetchd 39 inner-focus
## 216 83 farfetchd 51 keen-eye
## 217 84 doduo 48 early-bird
## 218 84 doduo 50 run-away
## 219 84 doduo 77 tangled-feet
## 220 85 dodrio 48 early-bird
## 221 85 dodrio 50 run-away
## 222 85 dodrio 77 tangled-feet
## 223 86 seel 93 hydration
## 224 86 seel 115 ice-body
## 225 86 seel 47 thick-fat
## 226 87 dewgong 93 hydration
## 227 87 dewgong 115 ice-body
## 228 87 dewgong 47 thick-fat
## 229 88 grimer 143 poison-touch
## 230 88 grimer 1 stench
## 231 88 grimer 60 sticky-hold
## 232 89 muk 143 poison-touch
## 233 89 muk 1 stench
## 234 89 muk 60 sticky-hold
## 235 90 shellder 142 overcoat
## 236 90 shellder 75 shell-armor
## 237 90 shellder 92 skill-link
## 238 91 cloyster 142 overcoat
## 239 91 cloyster 75 shell-armor
## 240 91 cloyster 92 skill-link
## 241 92 gastly 26 levitate
## 242 93 haunter 26 levitate
## 243 94 gengar 26 levitate
## 244 95 onix 69 rock-head
## 245 95 onix 5 sturdy
## 246 95 onix 133 weak-armor
## 247 96 drowzee 108 forewarn
## 248 96 drowzee 39 inner-focus
## 249 96 drowzee 15 insomnia
## 250 97 hypno 108 forewarn
## 251 97 hypno 39 inner-focus
## 252 97 hypno 15 insomnia
## 253 98 krabby 52 hyper-cutter
## 254 98 krabby 125 sheer-force
## 255 98 krabby 75 shell-armor
## 256 99 kingler 52 hyper-cutter
## 257 99 kingler 125 sheer-force
## 258 99 kingler 75 shell-armor
## 259 100 voltorb 106 aftermath
## 260 100 voltorb 43 soundproof
## 261 100 voltorb 9 static
## 262 101 electrode 106 aftermath
## 263 101 electrode 43 soundproof
## 264 101 electrode 9 static
## 265 102 exeggcute 34 chlorophyll
## 266 102 exeggcute 139 harvest
## 267 103 exeggutor 34 chlorophyll
## 268 103 exeggutor 139 harvest
## 269 104 cubone 4 battle-armor
## 270 104 cubone 31 lightning-rod
## 271 104 cubone 69 rock-head
## 272 105 marowak 4 battle-armor
## 273 105 marowak 31 lightning-rod
## 274 105 marowak 69 rock-head
## 275 106 hitmonlee 7 limber
## 276 106 hitmonlee 120 reckless
## 277 106 hitmonlee 84 unburden
## 278 107 hitmonchan 39 inner-focus
## 279 107 hitmonchan 89 iron-fist
## 280 107 hitmonchan 51 keen-eye
## 281 108 lickitung 13 cloud-nine
## 282 108 lickitung 12 oblivious
## 283 108 lickitung 20 own-tempo
## 284 109 koffing 26 levitate
## 285 110 weezing 26 levitate
## 286 111 rhyhorn 31 lightning-rod
## 287 111 rhyhorn 120 reckless
## 288 111 rhyhorn 69 rock-head
## 289 112 rhydon 31 lightning-rod
## 290 112 rhydon 120 reckless
## 291 112 rhydon 69 rock-head
## 292 113 chansey 131 healer
## 293 113 chansey 30 natural-cure
## 294 113 chansey 32 serene-grace
## 295 114 tangela 34 chlorophyll
## 296 114 tangela 102 leaf-guard
## 297 114 tangela 144 regenerator
## 298 115 kangaskhan 48 early-bird
## 299 115 kangaskhan 39 inner-focus
## 300 115 kangaskhan 113 scrappy
## 301 116 horsea 6 damp
## 302 116 horsea 97 sniper
## 303 116 horsea 33 swift-swim
## 304 117 seadra 6 damp
## 305 117 seadra 38 poison-point
## 306 117 seadra 97 sniper
## 307 118 goldeen 31 lightning-rod
## 308 118 goldeen 33 swift-swim
## 309 118 goldeen 41 water-veil
## 310 119 seaking 31 lightning-rod
## 311 119 seaking 33 swift-swim
## 312 119 seaking 41 water-veil
## 313 120 staryu 148 analytic
## 314 120 staryu 35 illuminate
## 315 120 staryu 30 natural-cure
## 316 121 starmie 148 analytic
## 317 121 starmie 35 illuminate
## 318 121 starmie 30 natural-cure
## 319 122 mr-mime 111 filter
## 320 122 mr-mime 43 soundproof
## 321 122 mr-mime 101 technician
## 322 123 scyther 80 steadfast
## 323 123 scyther 68 swarm
## 324 123 scyther 101 technician
## 325 124 jynx 87 dry-skin
## 326 124 jynx 108 forewarn
## 327 124 jynx 12 oblivious
## 328 125 electabuzz 9 static
## 329 125 electabuzz 72 vital-spirit
## 330 126 magmar 49 flame-body
## 331 126 magmar 72 vital-spirit
## 332 127 pinsir 52 hyper-cutter
## 333 127 pinsir 104 mold-breaker
## 334 127 pinsir 153 moxie
## 335 128 tauros 83 anger-point
## 336 128 tauros 22 intimidate
## 337 128 tauros 125 sheer-force
## 338 129 magikarp 155 rattled
## 339 129 magikarp 33 swift-swim
## 340 130 gyarados 22 intimidate
## 341 130 gyarados 153 moxie
## 342 131 lapras 93 hydration
## 343 131 lapras 75 shell-armor
## 344 131 lapras 11 water-absorb
## 345 132 ditto 150 imposter
## 346 132 ditto 7 limber
## 347 133 eevee 91 adaptability
## 348 133 eevee 107 anticipation
## 349 133 eevee 50 run-away
## 350 134 vaporeon 93 hydration
## 351 134 vaporeon 11 water-absorb
## 352 135 jolteon 95 quick-feet
## 353 135 jolteon 10 volt-absorb
## 354 136 flareon 18 flash-fire
## 355 136 flareon 62 guts
## 356 137 porygon 148 analytic
## 357 137 porygon 88 download
## 358 137 porygon 36 trace
## 359 138 omanyte 75 shell-armor
## 360 138 omanyte 33 swift-swim
## 361 138 omanyte 133 weak-armor
## 362 139 omastar 75 shell-armor
## 363 139 omastar 33 swift-swim
## 364 139 omastar 133 weak-armor
## 365 140 kabuto 4 battle-armor
## 366 140 kabuto 33 swift-swim
## 367 140 kabuto 133 weak-armor
## 368 141 kabutops 4 battle-armor
## 369 141 kabutops 33 swift-swim
## 370 141 kabutops 133 weak-armor
## 371 142 aerodactyl 46 pressure
## 372 142 aerodactyl 69 rock-head
## 373 142 aerodactyl 127 unnerve
## 374 143 snorlax 82 gluttony
## 375 143 snorlax 17 immunity
## 376 143 snorlax 47 thick-fat
## 377 144 articuno 46 pressure
## 378 144 articuno 81 snow-cloak
## 379 145 zapdos 46 pressure
## 380 145 zapdos 9 static
## 381 146 moltres 49 flame-body
## 382 146 moltres 46 pressure
## 383 147 dratini 63 marvel-scale
## 384 147 dratini 61 shed-skin
## 385 148 dragonair 63 marvel-scale
## 386 148 dragonair 61 shed-skin
## 387 149 dragonite 39 inner-focus
## 388 149 dragonite 136 multiscale
## 389 150 mewtwo 46 pressure
## 390 150 mewtwo 127 unnerve
## 391 151 mew 28 synchronize
## 392 152 chikorita 102 leaf-guard
## 393 152 chikorita 65 overgrow
## 394 153 bayleef 102 leaf-guard
## 395 153 bayleef 65 overgrow
## 396 154 meganium 102 leaf-guard
## 397 154 meganium 65 overgrow
## 398 155 cyndaquil 66 blaze
## 399 155 cyndaquil 18 flash-fire
## 400 156 quilava 66 blaze
## 401 156 quilava 18 flash-fire
## 402 157 typhlosion 66 blaze
## 403 157 typhlosion 18 flash-fire
## 404 158 totodile 125 sheer-force
## 405 158 totodile 67 torrent
## 406 159 croconaw 125 sheer-force
## 407 159 croconaw 67 torrent
## 408 160 feraligatr 125 sheer-force
## 409 160 feraligatr 67 torrent
## 410 161 sentret 119 frisk
## 411 161 sentret 51 keen-eye
## 412 161 sentret 50 run-away
## 413 162 furret 119 frisk
## 414 162 furret 51 keen-eye
## 415 162 furret 50 run-away
## 416 163 hoothoot 15 insomnia
## 417 163 hoothoot 51 keen-eye
## 418 163 hoothoot 110 tinted-lens
## 419 164 noctowl 15 insomnia
## 420 164 noctowl 51 keen-eye
## 421 164 noctowl 110 tinted-lens
## 422 165 ledyba 48 early-bird
## 423 165 ledyba 155 rattled
## 424 165 ledyba 68 swarm
## 425 166 ledian 48 early-bird
## 426 166 ledian 89 iron-fist
## 427 166 ledian 68 swarm
## 428 167 spinarak 15 insomnia
## 429 167 spinarak 97 sniper
## 430 167 spinarak 68 swarm
## 431 168 ariados 15 insomnia
## 432 168 ariados 97 sniper
## 433 168 ariados 68 swarm
## 434 169 crobat 151 infiltrator
## 435 169 crobat 39 inner-focus
## 436 170 chinchou 35 illuminate
## 437 170 chinchou 10 volt-absorb
## 438 170 chinchou 11 water-absorb
## 439 171 lanturn 35 illuminate
## 440 171 lanturn 10 volt-absorb
## 441 171 lanturn 11 water-absorb
## 442 172 pichu 31 lightning-rod
## 443 172 pichu 9 static
## 444 173 cleffa 56 cute-charm
## 445 173 cleffa 132 friend-guard
## 446 173 cleffa 98 magic-guard
## 447 174 igglybuff 172 competitive
## 448 174 igglybuff 56 cute-charm
## 449 174 igglybuff 132 friend-guard
## 450 175 togepi 55 hustle
## 451 175 togepi 32 serene-grace
## 452 175 togepi 105 super-luck
## 453 176 togetic 55 hustle
## 454 176 togetic 32 serene-grace
## 455 176 togetic 105 super-luck
## 456 177 natu 48 early-bird
## 457 177 natu 156 magic-bounce
## 458 177 natu 28 synchronize
## 459 178 xatu 48 early-bird
## 460 178 xatu 156 magic-bounce
## 461 178 xatu 28 synchronize
## 462 179 mareep 57 plus
## 463 179 mareep 9 static
## 464 180 flaaffy 57 plus
## 465 180 flaaffy 9 static
## 466 181 ampharos 57 plus
## 467 181 ampharos 9 static
## 468 182 bellossom 34 chlorophyll
## 469 182 bellossom 131 healer
## 470 183 marill 37 huge-power
## 471 183 marill 157 sap-sipper
## 472 183 marill 47 thick-fat
## 473 184 azumarill 37 huge-power
## 474 184 azumarill 157 sap-sipper
## 475 184 azumarill 47 thick-fat
## 476 185 sudowoodo 155 rattled
## 477 185 sudowoodo 69 rock-head
## 478 185 sudowoodo 5 sturdy
## 479 186 politoed 6 damp
## 480 186 politoed 2 drizzle
## 481 186 politoed 11 water-absorb
## 482 187 hoppip 34 chlorophyll
## 483 187 hoppip 151 infiltrator
## 484 187 hoppip 102 leaf-guard
## 485 188 skiploom 34 chlorophyll
## 486 188 skiploom 151 infiltrator
## 487 188 skiploom 102 leaf-guard
## 488 189 jumpluff 34 chlorophyll
## 489 189 jumpluff 151 infiltrator
## 490 189 jumpluff 102 leaf-guard
## 491 190 aipom 53 pickup
## 492 190 aipom 50 run-away
## 493 190 aipom 92 skill-link
## 494 191 sunkern 34 chlorophyll
## 495 191 sunkern 48 early-bird
## 496 191 sunkern 94 solar-power
## 497 192 sunflora 34 chlorophyll
## 498 192 sunflora 48 early-bird
## 499 192 sunflora 94 solar-power
## 500 193 yanma 14 compound-eyes
## 501 193 yanma 119 frisk
## 502 193 yanma 3 speed-boost
## 503 194 wooper 6 damp
## 504 194 wooper 109 unaware
## 505 194 wooper 11 water-absorb
## 506 195 quagsire 6 damp
## 507 195 quagsire 109 unaware
## 508 195 quagsire 11 water-absorb
## 509 196 espeon 156 magic-bounce
## 510 196 espeon 28 synchronize
## 511 197 umbreon 39 inner-focus
## 512 197 umbreon 28 synchronize
## 513 198 murkrow 15 insomnia
## 514 198 murkrow 158 prankster
## 515 198 murkrow 105 super-luck
## 516 199 slowking 12 oblivious
## 517 199 slowking 20 own-tempo
## 518 199 slowking 144 regenerator
## 519 200 misdreavus 26 levitate
## 520 201 unown 26 levitate
## 521 202 wobbuffet 23 shadow-tag
## 522 202 wobbuffet 140 telepathy
## 523 203 girafarig 48 early-bird
## 524 203 girafarig 39 inner-focus
## 525 203 girafarig 157 sap-sipper
## 526 204 pineco 142 overcoat
## 527 204 pineco 5 sturdy
## 528 205 forretress 142 overcoat
## 529 205 forretress 5 sturdy
## 530 206 dunsparce 155 rattled
## 531 206 dunsparce 50 run-away
## 532 206 dunsparce 32 serene-grace
## 533 207 gligar 52 hyper-cutter
## 534 207 gligar 17 immunity
## 535 207 gligar 8 sand-veil
## 536 208 steelix 69 rock-head
## 537 208 steelix 125 sheer-force
## 538 208 steelix 5 sturdy
## 539 209 snubbull 22 intimidate
## 540 209 snubbull 155 rattled
## 541 209 snubbull 50 run-away
## 542 210 granbull 22 intimidate
## 543 210 granbull 95 quick-feet
## 544 210 granbull 155 rattled
## 545 211 qwilfish 22 intimidate
## 546 211 qwilfish 38 poison-point
## 547 211 qwilfish 33 swift-swim
## 548 212 scizor 135 light-metal
## 549 212 scizor 68 swarm
## 550 212 scizor 101 technician
## 551 213 shuckle 126 contrary
## 552 213 shuckle 82 gluttony
## 553 213 shuckle 5 sturdy
## 554 214 heracross 62 guts
## 555 214 heracross 153 moxie
## 556 214 heracross 68 swarm
## 557 215 sneasel 39 inner-focus
## 558 215 sneasel 51 keen-eye
## 559 215 sneasel 124 pickpocket
## 560 216 teddiursa 118 honey-gather
## 561 216 teddiursa 53 pickup
## 562 216 teddiursa 95 quick-feet
## 563 217 ursaring 62 guts
## 564 217 ursaring 95 quick-feet
## 565 217 ursaring 127 unnerve
## 566 218 slugma 49 flame-body
## 567 218 slugma 40 magma-armor
## 568 218 slugma 133 weak-armor
## 569 219 magcargo 49 flame-body
## 570 219 magcargo 40 magma-armor
## 571 219 magcargo 133 weak-armor
## 572 220 swinub 12 oblivious
## 573 220 swinub 81 snow-cloak
## 574 220 swinub 47 thick-fat
## 575 221 piloswine 12 oblivious
## 576 221 piloswine 81 snow-cloak
## 577 221 piloswine 47 thick-fat
## 578 222 corsola 55 hustle
## 579 222 corsola 30 natural-cure
## 580 222 corsola 144 regenerator
## 581 223 remoraid 55 hustle
## 582 223 remoraid 141 moody
## 583 223 remoraid 97 sniper
## 584 224 octillery 141 moody
## 585 224 octillery 97 sniper
## 586 224 octillery 21 suction-cups
## 587 225 delibird 55 hustle
## 588 225 delibird 15 insomnia
## 589 225 delibird 72 vital-spirit
## 590 226 mantine 33 swift-swim
## 591 226 mantine 11 water-absorb
## 592 226 mantine 41 water-veil
## 593 227 skarmory 51 keen-eye
## 594 227 skarmory 5 sturdy
## 595 227 skarmory 133 weak-armor
## 596 228 houndour 48 early-bird
## 597 228 houndour 18 flash-fire
## 598 228 houndour 127 unnerve
## 599 229 houndoom 48 early-bird
## 600 229 houndoom 18 flash-fire
## 601 229 houndoom 127 unnerve
## 602 230 kingdra 6 damp
## 603 230 kingdra 97 sniper
## 604 230 kingdra 33 swift-swim
## 605 231 phanpy 53 pickup
## 606 231 phanpy 8 sand-veil
## 607 232 donphan 8 sand-veil
## 608 232 donphan 5 sturdy
## 609 233 porygon2 148 analytic
## 610 233 porygon2 88 download
## 611 233 porygon2 36 trace
## 612 234 stantler 119 frisk
## 613 234 stantler 22 intimidate
## 614 234 stantler 157 sap-sipper
## 615 235 smeargle 141 moody
## 616 235 smeargle 20 own-tempo
## 617 235 smeargle 101 technician
## 618 236 tyrogue 62 guts
## 619 236 tyrogue 80 steadfast
## 620 236 tyrogue 72 vital-spirit
## 621 237 hitmontop 22 intimidate
## 622 237 hitmontop 80 steadfast
## 623 237 hitmontop 101 technician
## 624 238 smoochum 108 forewarn
## 625 238 smoochum 93 hydration
## 626 238 smoochum 12 oblivious
## 627 239 elekid 9 static
## 628 239 elekid 72 vital-spirit
## 629 240 magby 49 flame-body
## 630 240 magby 72 vital-spirit
## 631 241 miltank 157 sap-sipper
## 632 241 miltank 113 scrappy
## 633 241 miltank 47 thick-fat
## 634 242 blissey 131 healer
## 635 242 blissey 30 natural-cure
## 636 242 blissey 32 serene-grace
## 637 243 raikou 46 pressure
## 638 243 raikou 10 volt-absorb
## 639 244 entei 18 flash-fire
## 640 244 entei 46 pressure
## 641 245 suicune 46 pressure
## 642 245 suicune 11 water-absorb
## 643 246 larvitar 62 guts
## 644 246 larvitar 8 sand-veil
## 645 247 pupitar 61 shed-skin
## 646 248 tyranitar 45 sand-stream
## 647 248 tyranitar 127 unnerve
## 648 249 lugia 136 multiscale
## 649 249 lugia 46 pressure
## 650 250 ho-oh 46 pressure
## 651 250 ho-oh 144 regenerator
## 652 251 celebi 30 natural-cure
## 653 252 treecko 65 overgrow
## 654 252 treecko 84 unburden
## 655 253 grovyle 65 overgrow
## 656 253 grovyle 84 unburden
## 657 254 sceptile 65 overgrow
## 658 254 sceptile 84 unburden
## 659 255 torchic 66 blaze
## 660 255 torchic 3 speed-boost
## 661 256 combusken 66 blaze
## 662 256 combusken 3 speed-boost
## 663 257 blaziken 66 blaze
## 664 257 blaziken 3 speed-boost
## 665 258 mudkip 6 damp
## 666 258 mudkip 67 torrent
## 667 259 marshtomp 6 damp
## 668 259 marshtomp 67 torrent
## 669 260 swampert 6 damp
## 670 260 swampert 67 torrent
## 671 261 poochyena 95 quick-feet
## 672 261 poochyena 155 rattled
## 673 261 poochyena 50 run-away
## 674 262 mightyena 22 intimidate
## 675 262 mightyena 153 moxie
## 676 262 mightyena 95 quick-feet
## 677 263 zigzagoon 82 gluttony
## 678 263 zigzagoon 53 pickup
## 679 263 zigzagoon 95 quick-feet
## 680 264 linoone 82 gluttony
## 681 264 linoone 53 pickup
## 682 264 linoone 95 quick-feet
## 683 265 wurmple 50 run-away
## 684 265 wurmple 19 shield-dust
## 685 266 silcoon 61 shed-skin
## 686 267 beautifly 79 rivalry
## 687 267 beautifly 68 swarm
## 688 268 cascoon 61 shed-skin
## 689 269 dustox 14 compound-eyes
## 690 269 dustox 19 shield-dust
## 691 270 lotad 20 own-tempo
## 692 270 lotad 44 rain-dish
## 693 270 lotad 33 swift-swim
## 694 271 lombre 20 own-tempo
## 695 271 lombre 44 rain-dish
## 696 271 lombre 33 swift-swim
## 697 272 ludicolo 20 own-tempo
## 698 272 ludicolo 44 rain-dish
## 699 272 ludicolo 33 swift-swim
## 700 273 seedot 34 chlorophyll
## 701 273 seedot 48 early-bird
## 702 273 seedot 124 pickpocket
## 703 274 nuzleaf 34 chlorophyll
## 704 274 nuzleaf 48 early-bird
## 705 274 nuzleaf 124 pickpocket
## 706 275 shiftry 34 chlorophyll
## 707 275 shiftry 48 early-bird
## 708 275 shiftry 124 pickpocket
## 709 276 taillow 62 guts
## 710 276 taillow 113 scrappy
## 711 277 swellow 62 guts
## 712 277 swellow 113 scrappy
## 713 278 wingull 51 keen-eye
## 714 278 wingull 44 rain-dish
## 715 279 pelipper 51 keen-eye
## 716 279 pelipper 44 rain-dish
## 717 280 ralts 28 synchronize
## 718 280 ralts 140 telepathy
## 719 280 ralts 36 trace
## 720 281 kirlia 28 synchronize
## 721 281 kirlia 140 telepathy
## 722 281 kirlia 36 trace
## 723 282 gardevoir 28 synchronize
## 724 282 gardevoir 140 telepathy
## 725 282 gardevoir 36 trace
## 726 283 surskit 44 rain-dish
## 727 283 surskit 33 swift-swim
## 728 284 masquerain 22 intimidate
## 729 284 masquerain 127 unnerve
## 730 285 shroomish 27 effect-spore
## 731 285 shroomish 90 poison-heal
## 732 285 shroomish 95 quick-feet
## 733 286 breloom 27 effect-spore
## 734 286 breloom 90 poison-heal
## 735 286 breloom 101 technician
## 736 287 slakoth 54 truant
## 737 288 vigoroth 72 vital-spirit
## 738 289 slaking 54 truant
## 739 290 nincada 14 compound-eyes
## 740 290 nincada 50 run-away
## 741 291 ninjask 151 infiltrator
## 742 291 ninjask 3 speed-boost
## 743 292 shedinja 25 wonder-guard
## 744 293 whismur 155 rattled
## 745 293 whismur 43 soundproof
## 746 294 loudred 113 scrappy
## 747 294 loudred 43 soundproof
## 748 295 exploud 113 scrappy
## 749 295 exploud 43 soundproof
## 750 296 makuhita 62 guts
## 751 296 makuhita 125 sheer-force
## 752 296 makuhita 47 thick-fat
## 753 297 hariyama 62 guts
## 754 297 hariyama 125 sheer-force
## 755 297 hariyama 47 thick-fat
## 756 298 azurill 37 huge-power
## 757 298 azurill 157 sap-sipper
## 758 298 azurill 47 thick-fat
## 759 299 nosepass 42 magnet-pull
## 760 299 nosepass 159 sand-force
## 761 299 nosepass 5 sturdy
## 762 300 skitty 56 cute-charm
## 763 300 skitty 96 normalize
## 764 300 skitty 147 wonder-skin
## 765 301 delcatty 56 cute-charm
## 766 301 delcatty 96 normalize
## 767 301 delcatty 147 wonder-skin
## 768 302 sableye 51 keen-eye
## 769 302 sableye 158 prankster
## 770 302 sableye 100 stall
## 771 303 mawile 52 hyper-cutter
## 772 303 mawile 22 intimidate
## 773 303 mawile 125 sheer-force
## 774 304 aron 134 heavy-metal
## 775 304 aron 69 rock-head
## 776 304 aron 5 sturdy
## 777 305 lairon 134 heavy-metal
## 778 305 lairon 69 rock-head
## 779 305 lairon 5 sturdy
## 780 306 aggron 134 heavy-metal
## 781 306 aggron 69 rock-head
## 782 306 aggron 5 sturdy
## 783 307 meditite 74 pure-power
## 784 307 meditite 140 telepathy
## 785 308 medicham 74 pure-power
## 786 308 medicham 140 telepathy
## 787 309 electrike 31 lightning-rod
## 788 309 electrike 58 minus
## 789 309 electrike 9 static
## 790 310 manectric 31 lightning-rod
## 791 310 manectric 58 minus
## 792 310 manectric 9 static
## 793 311 plusle 31 lightning-rod
## 794 311 plusle 57 plus
## 795 312 minun 58 minus
## 796 312 minun 10 volt-absorb
## 797 313 volbeat 35 illuminate
## 798 313 volbeat 158 prankster
## 799 313 volbeat 68 swarm
## 800 314 illumise 12 oblivious
## 801 314 illumise 158 prankster
## 802 314 illumise 110 tinted-lens
## 803 315 roselia 102 leaf-guard
## 804 315 roselia 30 natural-cure
## 805 315 roselia 38 poison-point
## 806 316 gulpin 82 gluttony
## 807 316 gulpin 64 liquid-ooze
## 808 316 gulpin 60 sticky-hold
## 809 317 swalot 82 gluttony
## 810 317 swalot 64 liquid-ooze
## 811 317 swalot 60 sticky-hold
## 812 318 carvanha 24 rough-skin
## 813 318 carvanha 3 speed-boost
## 814 319 sharpedo 24 rough-skin
## 815 319 sharpedo 3 speed-boost
## 816 320 wailmer 12 oblivious
## 817 320 wailmer 46 pressure
## 818 320 wailmer 41 water-veil
## 819 321 wailord 12 oblivious
## 820 321 wailord 46 pressure
## 821 321 wailord 41 water-veil
## 822 322 numel 12 oblivious
## 823 322 numel 20 own-tempo
## 824 322 numel 86 simple
## 825 323 camerupt 83 anger-point
## 826 323 camerupt 40 magma-armor
## 827 323 camerupt 116 solid-rock
## 828 324 torkoal 75 shell-armor
## 829 324 torkoal 73 white-smoke
## 830 325 spoink 82 gluttony
## 831 325 spoink 20 own-tempo
## 832 325 spoink 47 thick-fat
## 833 326 grumpig 82 gluttony
## 834 326 grumpig 20 own-tempo
## 835 326 grumpig 47 thick-fat
## 836 327 spinda 126 contrary
## 837 327 spinda 20 own-tempo
## 838 327 spinda 77 tangled-feet
## 839 328 trapinch 71 arena-trap
## 840 328 trapinch 52 hyper-cutter
## 841 328 trapinch 125 sheer-force
## 842 329 vibrava 26 levitate
## 843 330 flygon 26 levitate
## 844 331 cacnea 8 sand-veil
## 845 331 cacnea 11 water-absorb
## 846 332 cacturne 8 sand-veil
## 847 332 cacturne 11 water-absorb
## 848 333 swablu 13 cloud-nine
## 849 333 swablu 30 natural-cure
## 850 334 altaria 13 cloud-nine
## 851 334 altaria 30 natural-cure
## 852 335 zangoose 17 immunity
## 853 335 zangoose 137 toxic-boost
## 854 336 seviper 151 infiltrator
## 855 336 seviper 61 shed-skin
## 856 337 lunatone 26 levitate
## 857 338 solrock 26 levitate
## 858 339 barboach 107 anticipation
## 859 339 barboach 93 hydration
## 860 339 barboach 12 oblivious
## 861 340 whiscash 107 anticipation
## 862 340 whiscash 93 hydration
## 863 340 whiscash 12 oblivious
## 864 341 corphish 91 adaptability
## 865 341 corphish 52 hyper-cutter
## 866 341 corphish 75 shell-armor
## 867 342 crawdaunt 91 adaptability
## 868 342 crawdaunt 52 hyper-cutter
## 869 342 crawdaunt 75 shell-armor
## 870 343 baltoy 26 levitate
## 871 344 claydol 26 levitate
## 872 345 lileep 114 storm-drain
## 873 345 lileep 21 suction-cups
## 874 346 cradily 114 storm-drain
## 875 346 cradily 21 suction-cups
## 876 347 anorith 4 battle-armor
## 877 347 anorith 33 swift-swim
## 878 348 armaldo 4 battle-armor
## 879 348 armaldo 33 swift-swim
## 880 349 feebas 91 adaptability
## 881 349 feebas 12 oblivious
## 882 349 feebas 33 swift-swim
## 883 350 milotic 172 competitive
## 884 350 milotic 56 cute-charm
## 885 350 milotic 63 marvel-scale
## 886 351 castform 59 forecast
## 887 352 kecleon 16 color-change
## 888 352 kecleon 168 protean
## 889 353 shuppet 130 cursed-body
## 890 353 shuppet 119 frisk
## 891 353 shuppet 15 insomnia
## 892 354 banette 130 cursed-body
## 893 354 banette 119 frisk
## 894 354 banette 15 insomnia
## 895 355 duskull 119 frisk
## 896 355 duskull 26 levitate
## 897 356 dusclops 119 frisk
## 898 356 dusclops 46 pressure
## 899 357 tropius 34 chlorophyll
## 900 357 tropius 139 harvest
## 901 357 tropius 94 solar-power
## 902 358 chimecho 26 levitate
## 903 359 absol 154 justified
## 904 359 absol 46 pressure
## 905 359 absol 105 super-luck
## 906 360 wynaut 23 shadow-tag
## 907 360 wynaut 140 telepathy
## 908 361 snorunt 115 ice-body
## 909 361 snorunt 39 inner-focus
## 910 361 snorunt 141 moody
## 911 362 glalie 115 ice-body
## 912 362 glalie 39 inner-focus
## 913 362 glalie 141 moody
## 914 363 spheal 115 ice-body
## 915 363 spheal 12 oblivious
## 916 363 spheal 47 thick-fat
## 917 364 sealeo 115 ice-body
## 918 364 sealeo 12 oblivious
## 919 364 sealeo 47 thick-fat
## 920 365 walrein 115 ice-body
## 921 365 walrein 12 oblivious
## 922 365 walrein 47 thick-fat
## 923 366 clamperl 155 rattled
## 924 366 clamperl 75 shell-armor
## 925 367 huntail 33 swift-swim
## 926 367 huntail 41 water-veil
## 927 368 gorebyss 93 hydration
## 928 368 gorebyss 33 swift-swim
## 929 369 relicanth 69 rock-head
## 930 369 relicanth 5 sturdy
## 931 369 relicanth 33 swift-swim
## 932 370 luvdisc 93 hydration
## 933 370 luvdisc 33 swift-swim
## 934 371 bagon 69 rock-head
## 935 371 bagon 125 sheer-force
## 936 372 shelgon 142 overcoat
## 937 372 shelgon 69 rock-head
## 938 373 salamence 22 intimidate
## 939 373 salamence 153 moxie
## 940 374 beldum 29 clear-body
## 941 374 beldum 135 light-metal
## 942 375 metang 29 clear-body
## 943 375 metang 135 light-metal
## 944 376 metagross 29 clear-body
## 945 376 metagross 135 light-metal
## 946 377 regirock 29 clear-body
## 947 377 regirock 5 sturdy
## 948 378 regice 29 clear-body
## 949 378 regice 115 ice-body
## 950 379 registeel 29 clear-body
## 951 379 registeel 135 light-metal
## 952 380 latias 26 levitate
## 953 381 latios 26 levitate
## 954 382 kyogre 2 drizzle
## 955 383 groudon 70 drought
## 956 384 rayquaza 76 air-lock
## 957 385 jirachi 32 serene-grace
## 958 386 deoxys-normal 46 pressure
## 959 387 turtwig 65 overgrow
## 960 387 turtwig 75 shell-armor
## 961 388 grotle 65 overgrow
## 962 388 grotle 75 shell-armor
## 963 389 torterra 65 overgrow
## 964 389 torterra 75 shell-armor
## 965 390 chimchar 66 blaze
## 966 390 chimchar 89 iron-fist
## 967 391 monferno 66 blaze
## 968 391 monferno 89 iron-fist
## 969 392 infernape 66 blaze
## 970 392 infernape 89 iron-fist
## 971 393 piplup 128 defiant
## 972 393 piplup 67 torrent
## 973 394 prinplup 128 defiant
## 974 394 prinplup 67 torrent
## 975 395 empoleon 128 defiant
## 976 395 empoleon 67 torrent
## 977 396 starly 51 keen-eye
## 978 396 starly 120 reckless
## 979 397 staravia 22 intimidate
## 980 397 staravia 120 reckless
## 981 398 staraptor 22 intimidate
## 982 398 staraptor 120 reckless
## 983 399 bidoof 141 moody
## 984 399 bidoof 86 simple
## 985 399 bidoof 109 unaware
## 986 400 bibarel 141 moody
## 987 400 bibarel 86 simple
## 988 400 bibarel 109 unaware
## 989 401 kricketot 50 run-away
## 990 401 kricketot 61 shed-skin
## 991 402 kricketune 68 swarm
## 992 402 kricketune 101 technician
## 993 403 shinx 62 guts
## 994 403 shinx 22 intimidate
## 995 403 shinx 79 rivalry
## 996 404 luxio 62 guts
## 997 404 luxio 22 intimidate
## 998 404 luxio 79 rivalry
## 999 405 luxray 62 guts
## 1000 405 luxray 22 intimidate
## 1001 405 luxray 79 rivalry
## 1002 406 budew 102 leaf-guard
## 1003 406 budew 30 natural-cure
## 1004 406 budew 38 poison-point
## 1005 407 roserade 30 natural-cure
## 1006 407 roserade 38 poison-point
## 1007 407 roserade 101 technician
## 1008 408 cranidos 104 mold-breaker
## 1009 408 cranidos 125 sheer-force
## 1010 409 rampardos 104 mold-breaker
## 1011 409 rampardos 125 sheer-force
## 1012 410 shieldon 43 soundproof
## 1013 410 shieldon 5 sturdy
## 1014 411 bastiodon 43 soundproof
## 1015 411 bastiodon 5 sturdy
## 1016 412 burmy 142 overcoat
## 1017 412 burmy 61 shed-skin
## 1018 413 wormadam-plant 107 anticipation
## 1019 413 wormadam-plant 142 overcoat
## 1020 414 mothim 68 swarm
## 1021 414 mothim 110 tinted-lens
## 1022 415 combee 118 honey-gather
## 1023 415 combee 55 hustle
## 1024 416 vespiquen 46 pressure
## 1025 416 vespiquen 127 unnerve
## 1026 417 pachirisu 53 pickup
## 1027 417 pachirisu 50 run-away
## 1028 417 pachirisu 10 volt-absorb
## 1029 418 buizel 33 swift-swim
## 1030 418 buizel 41 water-veil
## 1031 419 floatzel 33 swift-swim
## 1032 419 floatzel 41 water-veil
## 1033 420 cherubi 34 chlorophyll
## 1034 421 cherrim 122 flower-gift
## 1035 422 shellos 159 sand-force
## 1036 422 shellos 60 sticky-hold
## 1037 422 shellos 114 storm-drain
## 1038 423 gastrodon 159 sand-force
## 1039 423 gastrodon 60 sticky-hold
## 1040 423 gastrodon 114 storm-drain
## 1041 424 ambipom 53 pickup
## 1042 424 ambipom 92 skill-link
## 1043 424 ambipom 101 technician
## 1044 425 drifloon 106 aftermath
## 1045 425 drifloon 138 flare-boost
## 1046 425 drifloon 84 unburden
## 1047 426 drifblim 106 aftermath
## 1048 426 drifblim 138 flare-boost
## 1049 426 drifblim 84 unburden
## 1050 427 buneary 103 klutz
## 1051 427 buneary 7 limber
## 1052 427 buneary 50 run-away
## 1053 428 lopunny 56 cute-charm
## 1054 428 lopunny 103 klutz
## 1055 428 lopunny 7 limber
## 1056 429 mismagius 26 levitate
## 1057 430 honchkrow 15 insomnia
## 1058 430 honchkrow 153 moxie
## 1059 430 honchkrow 105 super-luck
## 1060 431 glameow 51 keen-eye
## 1061 431 glameow 7 limber
## 1062 431 glameow 20 own-tempo
## 1063 432 purugly 128 defiant
## 1064 432 purugly 20 own-tempo
## 1065 432 purugly 47 thick-fat
## 1066 433 chingling 26 levitate
## 1067 434 stunky 106 aftermath
## 1068 434 stunky 51 keen-eye
## 1069 434 stunky 1 stench
## 1070 435 skuntank 106 aftermath
## 1071 435 skuntank 51 keen-eye
## 1072 435 skuntank 1 stench
## 1073 436 bronzor 85 heatproof
## 1074 436 bronzor 134 heavy-metal
## 1075 436 bronzor 26 levitate
## 1076 437 bronzong 85 heatproof
## 1077 437 bronzong 134 heavy-metal
## 1078 437 bronzong 26 levitate
## 1079 438 bonsly 155 rattled
## 1080 438 bonsly 69 rock-head
## 1081 438 bonsly 5 sturdy
## 1082 439 mime-jr 111 filter
## 1083 439 mime-jr 43 soundproof
## 1084 439 mime-jr 101 technician
## 1085 440 happiny 132 friend-guard
## 1086 440 happiny 30 natural-cure
## 1087 440 happiny 32 serene-grace
## 1088 441 chatot 145 big-pecks
## 1089 441 chatot 51 keen-eye
## 1090 441 chatot 77 tangled-feet
## 1091 442 spiritomb 151 infiltrator
## 1092 442 spiritomb 46 pressure
## 1093 443 gible 24 rough-skin
## 1094 443 gible 8 sand-veil
## 1095 444 gabite 24 rough-skin
## 1096 444 gabite 8 sand-veil
## 1097 445 garchomp 24 rough-skin
## 1098 445 garchomp 8 sand-veil
## 1099 446 munchlax 82 gluttony
## 1100 446 munchlax 53 pickup
## 1101 446 munchlax 47 thick-fat
## 1102 447 riolu 39 inner-focus
## 1103 447 riolu 158 prankster
## 1104 447 riolu 80 steadfast
## 1105 448 lucario 39 inner-focus
## 1106 448 lucario 154 justified
## 1107 448 lucario 80 steadfast
## 1108 449 hippopotas 159 sand-force
## 1109 449 hippopotas 45 sand-stream
## 1110 450 hippowdon 159 sand-force
## 1111 450 hippowdon 45 sand-stream
## 1112 451 skorupi 4 battle-armor
## 1113 451 skorupi 51 keen-eye
## 1114 451 skorupi 97 sniper
## 1115 452 drapion 4 battle-armor
## 1116 452 drapion 51 keen-eye
## 1117 452 drapion 97 sniper
## 1118 453 croagunk 107 anticipation
## 1119 453 croagunk 87 dry-skin
## 1120 453 croagunk 143 poison-touch
## 1121 454 toxicroak 107 anticipation
## 1122 454 toxicroak 87 dry-skin
## 1123 454 toxicroak 143 poison-touch
## 1124 455 carnivine 26 levitate
## 1125 456 finneon 114 storm-drain
## 1126 456 finneon 33 swift-swim
## 1127 456 finneon 41 water-veil
## 1128 457 lumineon 114 storm-drain
## 1129 457 lumineon 33 swift-swim
## 1130 457 lumineon 41 water-veil
## 1131 458 mantyke 33 swift-swim
## 1132 458 mantyke 11 water-absorb
## 1133 458 mantyke 41 water-veil
## 1134 459 snover 117 snow-warning
## 1135 459 snover 43 soundproof
## 1136 460 abomasnow 117 snow-warning
## 1137 460 abomasnow 43 soundproof
## 1138 461 weavile 124 pickpocket
## 1139 461 weavile 46 pressure
## 1140 462 magnezone 148 analytic
## 1141 462 magnezone 42 magnet-pull
## 1142 462 magnezone 5 sturdy
## 1143 463 lickilicky 13 cloud-nine
## 1144 463 lickilicky 12 oblivious
## 1145 463 lickilicky 20 own-tempo
## 1146 464 rhyperior 31 lightning-rod
## 1147 464 rhyperior 120 reckless
## 1148 464 rhyperior 116 solid-rock
## 1149 465 tangrowth 34 chlorophyll
## 1150 465 tangrowth 102 leaf-guard
## 1151 465 tangrowth 144 regenerator
## 1152 466 electivire 78 motor-drive
## 1153 466 electivire 72 vital-spirit
## 1154 467 magmortar 49 flame-body
## 1155 467 magmortar 72 vital-spirit
## 1156 468 togekiss 55 hustle
## 1157 468 togekiss 32 serene-grace
## 1158 468 togekiss 105 super-luck
## 1159 469 yanmega 119 frisk
## 1160 469 yanmega 3 speed-boost
## 1161 469 yanmega 110 tinted-lens
## 1162 470 leafeon 34 chlorophyll
## 1163 470 leafeon 102 leaf-guard
## 1164 471 glaceon 115 ice-body
## 1165 471 glaceon 81 snow-cloak
## 1166 472 gliscor 52 hyper-cutter
## 1167 472 gliscor 90 poison-heal
## 1168 472 gliscor 8 sand-veil
## 1169 473 mamoswine 12 oblivious
## 1170 473 mamoswine 81 snow-cloak
## 1171 473 mamoswine 47 thick-fat
## 1172 474 porygon-z 91 adaptability
## 1173 474 porygon-z 148 analytic
## 1174 474 porygon-z 88 download
## 1175 475 gallade 154 justified
## 1176 475 gallade 80 steadfast
## 1177 476 probopass 42 magnet-pull
## 1178 476 probopass 159 sand-force
## 1179 476 probopass 5 sturdy
## 1180 477 dusknoir 119 frisk
## 1181 477 dusknoir 46 pressure
## 1182 478 froslass 130 cursed-body
## 1183 478 froslass 81 snow-cloak
## 1184 479 rotom 26 levitate
## 1185 480 uxie 26 levitate
## 1186 481 mesprit 26 levitate
## 1187 482 azelf 26 levitate
## 1188 483 dialga 46 pressure
## 1189 483 dialga 140 telepathy
## 1190 484 palkia 46 pressure
## 1191 484 palkia 140 telepathy
## 1192 485 heatran 49 flame-body
## 1193 485 heatran 18 flash-fire
## 1194 486 regigigas 112 slow-start
## 1195 487 giratina-altered 46 pressure
## 1196 487 giratina-altered 140 telepathy
## 1197 488 cresselia 26 levitate
## 1198 489 phione 93 hydration
## 1199 490 manaphy 93 hydration
## 1200 491 darkrai 123 bad-dreams
## 1201 492 shaymin-land 30 natural-cure
## 1202 493 arceus 121 multitype
## 1203 494 victini 162 victory-star
## 1204 495 snivy 126 contrary
## 1205 495 snivy 65 overgrow
## 1206 496 servine 126 contrary
## 1207 496 servine 65 overgrow
## 1208 497 serperior 126 contrary
## 1209 497 serperior 65 overgrow
## 1210 498 tepig 66 blaze
## 1211 498 tepig 47 thick-fat
## 1212 499 pignite 66 blaze
## 1213 499 pignite 47 thick-fat
## 1214 500 emboar 66 blaze
## 1215 500 emboar 120 reckless
## 1216 501 oshawott 75 shell-armor
## 1217 501 oshawott 67 torrent
## 1218 502 dewott 75 shell-armor
## 1219 502 dewott 67 torrent
## 1220 503 samurott 75 shell-armor
## 1221 503 samurott 67 torrent
## 1222 504 patrat 148 analytic
## 1223 504 patrat 51 keen-eye
## 1224 504 patrat 50 run-away
## 1225 505 watchog 148 analytic
## 1226 505 watchog 35 illuminate
## 1227 505 watchog 51 keen-eye
## 1228 506 lillipup 53 pickup
## 1229 506 lillipup 50 run-away
## 1230 506 lillipup 72 vital-spirit
## 1231 507 herdier 22 intimidate
## 1232 507 herdier 146 sand-rush
## 1233 507 herdier 113 scrappy
## 1234 508 stoutland 22 intimidate
## 1235 508 stoutland 146 sand-rush
## 1236 508 stoutland 113 scrappy
## 1237 509 purrloin 7 limber
## 1238 509 purrloin 158 prankster
## 1239 509 purrloin 84 unburden
## 1240 510 liepard 7 limber
## 1241 510 liepard 158 prankster
## 1242 510 liepard 84 unburden
## 1243 511 pansage 82 gluttony
## 1244 511 pansage 65 overgrow
## 1245 512 simisage 82 gluttony
## 1246 512 simisage 65 overgrow
## 1247 513 pansear 66 blaze
## 1248 513 pansear 82 gluttony
## 1249 514 simisear 66 blaze
## 1250 514 simisear 82 gluttony
## 1251 515 panpour 82 gluttony
## 1252 515 panpour 67 torrent
## 1253 516 simipour 82 gluttony
## 1254 516 simipour 67 torrent
## 1255 517 munna 108 forewarn
## 1256 517 munna 28 synchronize
## 1257 517 munna 140 telepathy
## 1258 518 musharna 108 forewarn
## 1259 518 musharna 28 synchronize
## 1260 518 musharna 140 telepathy
## 1261 519 pidove 145 big-pecks
## 1262 519 pidove 79 rivalry
## 1263 519 pidove 105 super-luck
## 1264 520 tranquill 145 big-pecks
## 1265 520 tranquill 79 rivalry
## 1266 520 tranquill 105 super-luck
## 1267 521 unfezant 145 big-pecks
## 1268 521 unfezant 79 rivalry
## 1269 521 unfezant 105 super-luck
## 1270 522 blitzle 31 lightning-rod
## 1271 522 blitzle 78 motor-drive
## 1272 522 blitzle 157 sap-sipper
## 1273 523 zebstrika 31 lightning-rod
## 1274 523 zebstrika 78 motor-drive
## 1275 523 zebstrika 157 sap-sipper
## 1276 524 roggenrola 159 sand-force
## 1277 524 roggenrola 5 sturdy
## 1278 525 boldore 159 sand-force
## 1279 525 boldore 5 sturdy
## 1280 526 gigalith 159 sand-force
## 1281 526 gigalith 5 sturdy
## 1282 527 woobat 103 klutz
## 1283 527 woobat 86 simple
## 1284 527 woobat 109 unaware
## 1285 528 swoobat 103 klutz
## 1286 528 swoobat 86 simple
## 1287 528 swoobat 109 unaware
## 1288 529 drilbur 104 mold-breaker
## 1289 529 drilbur 159 sand-force
## 1290 529 drilbur 146 sand-rush
## 1291 530 excadrill 104 mold-breaker
## 1292 530 excadrill 159 sand-force
## 1293 530 excadrill 146 sand-rush
## 1294 531 audino 131 healer
## 1295 531 audino 103 klutz
## 1296 531 audino 144 regenerator
## 1297 532 timburr 62 guts
## 1298 532 timburr 89 iron-fist
## 1299 532 timburr 125 sheer-force
## 1300 533 gurdurr 62 guts
## 1301 533 gurdurr 89 iron-fist
## 1302 533 gurdurr 125 sheer-force
## 1303 534 conkeldurr 62 guts
## 1304 534 conkeldurr 89 iron-fist
## 1305 534 conkeldurr 125 sheer-force
## 1306 535 tympole 93 hydration
## 1307 535 tympole 33 swift-swim
## 1308 535 tympole 11 water-absorb
## 1309 536 palpitoad 93 hydration
## 1310 536 palpitoad 33 swift-swim
## 1311 536 palpitoad 11 water-absorb
## 1312 537 seismitoad 143 poison-touch
## 1313 537 seismitoad 33 swift-swim
## 1314 537 seismitoad 11 water-absorb
## 1315 538 throh 62 guts
## 1316 538 throh 39 inner-focus
## 1317 538 throh 104 mold-breaker
## 1318 539 sawk 39 inner-focus
## 1319 539 sawk 104 mold-breaker
## 1320 539 sawk 5 sturdy
## 1321 540 sewaddle 34 chlorophyll
## 1322 540 sewaddle 142 overcoat
## 1323 540 sewaddle 68 swarm
## 1324 541 swadloon 34 chlorophyll
## 1325 541 swadloon 102 leaf-guard
## 1326 541 swadloon 142 overcoat
## 1327 542 leavanny 34 chlorophyll
## 1328 542 leavanny 142 overcoat
## 1329 542 leavanny 68 swarm
## 1330 543 venipede 38 poison-point
## 1331 543 venipede 3 speed-boost
## 1332 543 venipede 68 swarm
## 1333 544 whirlipede 38 poison-point
## 1334 544 whirlipede 3 speed-boost
## 1335 544 whirlipede 68 swarm
## 1336 545 scolipede 38 poison-point
## 1337 545 scolipede 3 speed-boost
## 1338 545 scolipede 68 swarm
## 1339 546 cottonee 34 chlorophyll
## 1340 546 cottonee 151 infiltrator
## 1341 546 cottonee 158 prankster
## 1342 547 whimsicott 34 chlorophyll
## 1343 547 whimsicott 151 infiltrator
## 1344 547 whimsicott 158 prankster
## 1345 548 petilil 34 chlorophyll
## 1346 548 petilil 102 leaf-guard
## 1347 548 petilil 20 own-tempo
## 1348 549 lilligant 34 chlorophyll
## 1349 549 lilligant 102 leaf-guard
## 1350 549 lilligant 20 own-tempo
## 1351 550 basculin-red-striped 91 adaptability
## 1352 550 basculin-red-striped 104 mold-breaker
## 1353 550 basculin-red-striped 120 reckless
## 1354 551 sandile 83 anger-point
## 1355 551 sandile 22 intimidate
## 1356 551 sandile 153 moxie
## 1357 552 krokorok 83 anger-point
## 1358 552 krokorok 22 intimidate
## 1359 552 krokorok 153 moxie
## 1360 553 krookodile 83 anger-point
## 1361 553 krookodile 22 intimidate
## 1362 553 krookodile 153 moxie
## 1363 554 darumaka 55 hustle
## 1364 554 darumaka 39 inner-focus
## 1365 555 darmanitan-standard 125 sheer-force
## 1366 555 darmanitan-standard 161 zen-mode
## 1367 556 maractus 34 chlorophyll
## 1368 556 maractus 114 storm-drain
## 1369 556 maractus 11 water-absorb
## 1370 557 dwebble 75 shell-armor
## 1371 557 dwebble 5 sturdy
## 1372 557 dwebble 133 weak-armor
## 1373 558 crustle 75 shell-armor
## 1374 558 crustle 5 sturdy
## 1375 558 crustle 133 weak-armor
## 1376 559 scraggy 22 intimidate
## 1377 559 scraggy 153 moxie
## 1378 559 scraggy 61 shed-skin
## 1379 560 scrafty 22 intimidate
## 1380 560 scrafty 153 moxie
## 1381 560 scrafty 61 shed-skin
## 1382 561 sigilyph 98 magic-guard
## 1383 561 sigilyph 110 tinted-lens
## 1384 561 sigilyph 147 wonder-skin
## 1385 562 yamask 152 mummy
## 1386 563 cofagrigus 152 mummy
## 1387 564 tirtouga 116 solid-rock
## 1388 564 tirtouga 5 sturdy
## 1389 564 tirtouga 33 swift-swim
## 1390 565 carracosta 116 solid-rock
## 1391 565 carracosta 5 sturdy
## 1392 565 carracosta 33 swift-swim
## 1393 566 archen 129 defeatist
## 1394 567 archeops 129 defeatist
## 1395 568 trubbish 106 aftermath
## 1396 568 trubbish 1 stench
## 1397 568 trubbish 60 sticky-hold
## 1398 569 garbodor 106 aftermath
## 1399 569 garbodor 1 stench
## 1400 569 garbodor 133 weak-armor
## 1401 570 zorua 149 illusion
## 1402 571 zoroark 149 illusion
## 1403 572 minccino 56 cute-charm
## 1404 572 minccino 92 skill-link
## 1405 572 minccino 101 technician
## 1406 573 cinccino 56 cute-charm
## 1407 573 cinccino 92 skill-link
## 1408 573 cinccino 101 technician
## 1409 574 gothita 172 competitive
## 1410 574 gothita 119 frisk
## 1411 574 gothita 23 shadow-tag
## 1412 575 gothorita 172 competitive
## 1413 575 gothorita 119 frisk
## 1414 575 gothorita 23 shadow-tag
## 1415 576 gothitelle 172 competitive
## 1416 576 gothitelle 119 frisk
## 1417 576 gothitelle 23 shadow-tag
## 1418 577 solosis 98 magic-guard
## 1419 577 solosis 142 overcoat
## 1420 577 solosis 144 regenerator
## 1421 578 duosion 98 magic-guard
## 1422 578 duosion 142 overcoat
## 1423 578 duosion 144 regenerator
## 1424 579 reuniclus 98 magic-guard
## 1425 579 reuniclus 142 overcoat
## 1426 579 reuniclus 144 regenerator
## 1427 580 ducklett 145 big-pecks
## 1428 580 ducklett 93 hydration
## 1429 580 ducklett 51 keen-eye
## 1430 581 swanna 145 big-pecks
## 1431 581 swanna 93 hydration
## 1432 581 swanna 51 keen-eye
## 1433 582 vanillite 115 ice-body
## 1434 582 vanillite 133 weak-armor
## 1435 583 vanillish 115 ice-body
## 1436 583 vanillish 133 weak-armor
## 1437 584 vanilluxe 115 ice-body
## 1438 584 vanilluxe 133 weak-armor
## 1439 585 deerling 34 chlorophyll
## 1440 585 deerling 157 sap-sipper
## 1441 585 deerling 32 serene-grace
## 1442 586 sawsbuck 34 chlorophyll
## 1443 586 sawsbuck 157 sap-sipper
## 1444 586 sawsbuck 32 serene-grace
## 1445 587 emolga 78 motor-drive
## 1446 587 emolga 9 static
## 1447 588 karrablast 99 no-guard
## 1448 588 karrablast 61 shed-skin
## 1449 588 karrablast 68 swarm
## 1450 589 escavalier 142 overcoat
## 1451 589 escavalier 75 shell-armor
## 1452 589 escavalier 68 swarm
## 1453 590 foongus 27 effect-spore
## 1454 590 foongus 144 regenerator
## 1455 591 amoonguss 27 effect-spore
## 1456 591 amoonguss 144 regenerator
## 1457 592 frillish 130 cursed-body
## 1458 592 frillish 6 damp
## 1459 592 frillish 11 water-absorb
## 1460 593 jellicent 130 cursed-body
## 1461 593 jellicent 6 damp
## 1462 593 jellicent 11 water-absorb
## 1463 594 alomomola 131 healer
## 1464 594 alomomola 93 hydration
## 1465 594 alomomola 144 regenerator
## 1466 595 joltik 14 compound-eyes
## 1467 595 joltik 68 swarm
## 1468 595 joltik 127 unnerve
## 1469 596 galvantula 14 compound-eyes
## 1470 596 galvantula 68 swarm
## 1471 596 galvantula 127 unnerve
## 1472 597 ferroseed 160 iron-barbs
## 1473 598 ferrothorn 107 anticipation
## 1474 598 ferrothorn 160 iron-barbs
## 1475 599 klink 29 clear-body
## 1476 599 klink 58 minus
## 1477 599 klink 57 plus
## 1478 600 klang 29 clear-body
## 1479 600 klang 58 minus
## 1480 600 klang 57 plus
## 1481 601 klinklang 29 clear-body
## 1482 601 klinklang 58 minus
## 1483 601 klinklang 57 plus
## 1484 602 tynamo 26 levitate
## 1485 603 eelektrik 26 levitate
## 1486 604 eelektross 26 levitate
## 1487 605 elgyem 148 analytic
## 1488 605 elgyem 28 synchronize
## 1489 605 elgyem 140 telepathy
## 1490 606 beheeyem 148 analytic
## 1491 606 beheeyem 28 synchronize
## 1492 606 beheeyem 140 telepathy
## 1493 607 litwick 49 flame-body
## 1494 607 litwick 18 flash-fire
## 1495 607 litwick 151 infiltrator
## 1496 608 lampent 49 flame-body
## 1497 608 lampent 18 flash-fire
## 1498 608 lampent 151 infiltrator
## 1499 609 chandelure 49 flame-body
## 1500 609 chandelure 18 flash-fire
## 1501 609 chandelure 151 infiltrator
## 1502 610 axew 104 mold-breaker
## 1503 610 axew 79 rivalry
## 1504 610 axew 127 unnerve
## 1505 611 fraxure 104 mold-breaker
## 1506 611 fraxure 79 rivalry
## 1507 611 fraxure 127 unnerve
## 1508 612 haxorus 104 mold-breaker
## 1509 612 haxorus 79 rivalry
## 1510 612 haxorus 127 unnerve
## 1511 613 cubchoo 155 rattled
## 1512 613 cubchoo 81 snow-cloak
## 1513 614 beartic 81 snow-cloak
## 1514 614 beartic 33 swift-swim
## 1515 615 cryogonal 26 levitate
## 1516 616 shelmet 93 hydration
## 1517 616 shelmet 142 overcoat
## 1518 616 shelmet 75 shell-armor
## 1519 617 accelgor 93 hydration
## 1520 617 accelgor 60 sticky-hold
## 1521 617 accelgor 84 unburden
## 1522 618 stunfisk 7 limber
## 1523 618 stunfisk 8 sand-veil
## 1524 618 stunfisk 9 static
## 1525 619 mienfoo 39 inner-focus
## 1526 619 mienfoo 120 reckless
## 1527 619 mienfoo 144 regenerator
## 1528 620 mienshao 39 inner-focus
## 1529 620 mienshao 120 reckless
## 1530 620 mienshao 144 regenerator
## 1531 621 druddigon 104 mold-breaker
## 1532 621 druddigon 24 rough-skin
## 1533 621 druddigon 125 sheer-force
## 1534 622 golett 89 iron-fist
## 1535 622 golett 103 klutz
## 1536 622 golett 99 no-guard
## 1537 623 golurk 89 iron-fist
## 1538 623 golurk 103 klutz
## 1539 623 golurk 99 no-guard
## 1540 624 pawniard 128 defiant
## 1541 624 pawniard 39 inner-focus
## 1542 624 pawniard 46 pressure
## 1543 625 bisharp 128 defiant
## 1544 625 bisharp 39 inner-focus
## 1545 625 bisharp 46 pressure
## 1546 626 bouffalant 120 reckless
## 1547 626 bouffalant 157 sap-sipper
## 1548 626 bouffalant 43 soundproof
## 1549 627 rufflet 55 hustle
## 1550 627 rufflet 51 keen-eye
## 1551 627 rufflet 125 sheer-force
## 1552 628 braviary 128 defiant
## 1553 628 braviary 51 keen-eye
## 1554 628 braviary 125 sheer-force
## 1555 629 vullaby 145 big-pecks
## 1556 629 vullaby 142 overcoat
## 1557 629 vullaby 133 weak-armor
## 1558 630 mandibuzz 145 big-pecks
## 1559 630 mandibuzz 142 overcoat
## 1560 630 mandibuzz 133 weak-armor
## 1561 631 heatmor 18 flash-fire
## 1562 631 heatmor 82 gluttony
## 1563 631 heatmor 73 white-smoke
## 1564 632 durant 55 hustle
## 1565 632 durant 68 swarm
## 1566 632 durant 54 truant
## 1567 633 deino 55 hustle
## 1568 634 zweilous 55 hustle
## 1569 635 hydreigon 26 levitate
## 1570 636 larvesta 49 flame-body
## 1571 636 larvesta 68 swarm
## 1572 637 volcarona 49 flame-body
## 1573 637 volcarona 68 swarm
## 1574 638 cobalion 154 justified
## 1575 639 terrakion 154 justified
## 1576 640 virizion 154 justified
## 1577 641 tornadus-incarnate 128 defiant
## 1578 641 tornadus-incarnate 158 prankster
## 1579 642 thundurus-incarnate 128 defiant
## 1580 642 thundurus-incarnate 158 prankster
## 1581 643 reshiram 163 turboblaze
## 1582 644 zekrom 164 teravolt
## 1583 645 landorus-incarnate 159 sand-force
## 1584 645 landorus-incarnate 125 sheer-force
## 1585 646 kyurem 46 pressure
## 1586 647 keldeo-ordinary 154 justified
## 1587 648 meloetta-aria 32 serene-grace
## 1588 649 genesect 88 download
## 1589 650 chespin 171 bulletproof
## 1590 650 chespin 65 overgrow
## 1591 651 quilladin 171 bulletproof
## 1592 651 quilladin 65 overgrow
## 1593 652 chesnaught 171 bulletproof
## 1594 652 chesnaught 65 overgrow
## 1595 653 fennekin 66 blaze
## 1596 653 fennekin 170 magician
## 1597 654 braixen 66 blaze
## 1598 654 braixen 170 magician
## 1599 655 delphox 66 blaze
## 1600 655 delphox 170 magician
## 1601 656 froakie 168 protean
## 1602 656 froakie 67 torrent
## 1603 657 frogadier 168 protean
## 1604 657 frogadier 67 torrent
## 1605 658 greninja 168 protean
## 1606 658 greninja 67 torrent
## 1607 659 bunnelby 167 cheek-pouch
## 1608 659 bunnelby 37 huge-power
## 1609 659 bunnelby 53 pickup
## 1610 660 diggersby 167 cheek-pouch
## 1611 660 diggersby 37 huge-power
## 1612 660 diggersby 53 pickup
## 1613 661 fletchling 145 big-pecks
## 1614 661 fletchling 177 gale-wings
## 1615 662 fletchinder 49 flame-body
## 1616 662 fletchinder 177 gale-wings
## 1617 663 talonflame 49 flame-body
## 1618 663 talonflame 177 gale-wings
## 1619 664 scatterbug 14 compound-eyes
## 1620 664 scatterbug 132 friend-guard
## 1621 664 scatterbug 19 shield-dust
## 1622 665 spewpa 132 friend-guard
## 1623 665 spewpa 61 shed-skin
## 1624 666 vivillon 14 compound-eyes
## 1625 666 vivillon 132 friend-guard
## 1626 666 vivillon 19 shield-dust
## 1627 667 litleo 153 moxie
## 1628 667 litleo 79 rivalry
## 1629 667 litleo 127 unnerve
## 1630 668 pyroar 153 moxie
## 1631 668 pyroar 79 rivalry
## 1632 668 pyroar 127 unnerve
## 1633 669 flabebe 166 flower-veil
## 1634 669 flabebe 180 symbiosis
## 1635 670 floette 166 flower-veil
## 1636 670 floette 180 symbiosis
## 1637 671 florges 166 flower-veil
## 1638 671 florges 180 symbiosis
## 1639 672 skiddo 179 grass-pelt
## 1640 672 skiddo 157 sap-sipper
## 1641 673 gogoat 179 grass-pelt
## 1642 673 gogoat 157 sap-sipper
## 1643 674 pancham 89 iron-fist
## 1644 674 pancham 104 mold-breaker
## 1645 674 pancham 113 scrappy
## 1646 675 pangoro 89 iron-fist
## 1647 675 pangoro 104 mold-breaker
## 1648 675 pangoro 113 scrappy
## 1649 676 furfrou 169 fur-coat
## 1650 677 espurr 151 infiltrator
## 1651 677 espurr 51 keen-eye
## 1652 677 espurr 20 own-tempo
## 1653 678 meowstic-male 151 infiltrator
## 1654 678 meowstic-male 51 keen-eye
## 1655 678 meowstic-male 158 prankster
## 1656 679 honedge 99 no-guard
## 1657 680 doublade 99 no-guard
## 1658 681 aegislash-shield 176 stance-change
## 1659 682 spritzee 165 aroma-veil
## 1660 682 spritzee 131 healer
## 1661 683 aromatisse 165 aroma-veil
## 1662 683 aromatisse 131 healer
## 1663 684 swirlix 175 sweet-veil
## 1664 684 swirlix 84 unburden
## 1665 685 slurpuff 175 sweet-veil
## 1666 685 slurpuff 84 unburden
## 1667 686 inkay 126 contrary
## 1668 686 inkay 151 infiltrator
## 1669 686 inkay 21 suction-cups
## 1670 687 malamar 126 contrary
## 1671 687 malamar 151 infiltrator
## 1672 687 malamar 21 suction-cups
## 1673 688 binacle 124 pickpocket
## 1674 688 binacle 97 sniper
## 1675 688 binacle 181 tough-claws
## 1676 689 barbaracle 124 pickpocket
## 1677 689 barbaracle 97 sniper
## 1678 689 barbaracle 181 tough-claws
## 1679 690 skrelp 91 adaptability
## 1680 690 skrelp 38 poison-point
## 1681 690 skrelp 143 poison-touch
## 1682 691 dragalge 91 adaptability
## 1683 691 dragalge 38 poison-point
## 1684 691 dragalge 143 poison-touch
## 1685 692 clauncher 178 mega-launcher
## 1686 693 clawitzer 178 mega-launcher
## 1687 694 helioptile 87 dry-skin
## 1688 694 helioptile 8 sand-veil
## 1689 694 helioptile 94 solar-power
## 1690 695 heliolisk 87 dry-skin
## 1691 695 heliolisk 8 sand-veil
## 1692 695 heliolisk 94 solar-power
## 1693 696 tyrunt 173 strong-jaw
## 1694 696 tyrunt 5 sturdy
## 1695 697 tyrantrum 69 rock-head
## 1696 697 tyrantrum 173 strong-jaw
## 1697 698 amaura 174 refrigerate
## 1698 698 amaura 117 snow-warning
## 1699 699 aurorus 174 refrigerate
## 1700 699 aurorus 117 snow-warning
## 1701 700 sylveon 56 cute-charm
## 1702 700 sylveon 182 pixilate
## 1703 701 hawlucha 7 limber
## 1704 701 hawlucha 104 mold-breaker
## 1705 701 hawlucha 84 unburden
## 1706 702 dedenne 167 cheek-pouch
## 1707 702 dedenne 53 pickup
## 1708 702 dedenne 57 plus
## 1709 703 carbink 29 clear-body
## 1710 703 carbink 5 sturdy
## 1711 704 goomy 183 gooey
## 1712 704 goomy 93 hydration
## 1713 704 goomy 157 sap-sipper
## 1714 705 sliggoo 183 gooey
## 1715 705 sliggoo 93 hydration
## 1716 705 sliggoo 157 sap-sipper
## 1717 706 goodra 183 gooey
## 1718 706 goodra 93 hydration
## 1719 706 goodra 157 sap-sipper
## 1720 707 klefki 170 magician
## 1721 707 klefki 158 prankster
## 1722 708 phantump 119 frisk
## 1723 708 phantump 139 harvest
## 1724 708 phantump 30 natural-cure
## 1725 709 trevenant 119 frisk
## 1726 709 trevenant 139 harvest
## 1727 709 trevenant 30 natural-cure
## 1728 710 pumpkaboo-average 119 frisk
## 1729 710 pumpkaboo-average 15 insomnia
## 1730 710 pumpkaboo-average 53 pickup
## 1731 711 gourgeist-average 119 frisk
## 1732 711 gourgeist-average 15 insomnia
## 1733 711 gourgeist-average 53 pickup
## 1734 712 bergmite 115 ice-body
## 1735 712 bergmite 20 own-tempo
## 1736 712 bergmite 5 sturdy
## 1737 713 avalugg 115 ice-body
## 1738 713 avalugg 20 own-tempo
## 1739 713 avalugg 5 sturdy
## 1740 714 noibat 119 frisk
## 1741 714 noibat 151 infiltrator
## 1742 714 noibat 140 telepathy
## 1743 715 noivern 119 frisk
## 1744 715 noivern 151 infiltrator
## 1745 715 noivern 140 telepathy
## 1746 716 xerneas 187 fairy-aura
## 1747 717 yveltal 186 dark-aura
## 1748 718 zygarde 188 aura-break
## 1749 719 diancie 29 clear-body
## 1750 720 hoopa 170 magician
## 1751 721 volcanion 11 water-absorb
## 1752 10001 deoxys-attack 46 pressure
## 1753 10002 deoxys-defense 46 pressure
## 1754 10003 deoxys-speed 46 pressure
## 1755 10004 wormadam-sandy 107 anticipation
## 1756 10004 wormadam-sandy 142 overcoat
## 1757 10005 wormadam-trash 107 anticipation
## 1758 10005 wormadam-trash 142 overcoat
## 1759 10006 shaymin-sky 32 serene-grace
## 1760 10007 giratina-origin 26 levitate
## 1761 10008 rotom-heat 26 levitate
## 1762 10009 rotom-wash 26 levitate
## 1763 10010 rotom-frost 26 levitate
## 1764 10011 rotom-fan 26 levitate
## 1765 10012 rotom-mow 26 levitate
## 1766 10013 castform-sunny 59 forecast
## 1767 10014 castform-rainy 59 forecast
## 1768 10015 castform-snowy 59 forecast
## 1769 10016 basculin-blue-striped 91 adaptability
## 1770 10016 basculin-blue-striped 104 mold-breaker
## 1771 10016 basculin-blue-striped 69 rock-head
## 1772 10017 darmanitan-zen 125 sheer-force
## 1773 10017 darmanitan-zen 161 zen-mode
## 1774 10018 meloetta-pirouette 32 serene-grace
## 1775 10019 tornadus-therian 144 regenerator
## 1776 10020 thundurus-therian 10 volt-absorb
## 1777 10021 landorus-therian 22 intimidate
## 1778 10022 kyurem-black 164 teravolt
## 1779 10023 kyurem-white 163 turboblaze
## 1780 10024 keldeo-resolute 154 justified
## 1781 10025 meowstic-female 172 competitive
## 1782 10025 meowstic-female 151 infiltrator
## 1783 10025 meowstic-female 51 keen-eye
## 1784 10026 aegislash-blade 176 stance-change
## 1785 10027 pumpkaboo-small 119 frisk
## 1786 10027 pumpkaboo-small 15 insomnia
## 1787 10027 pumpkaboo-small 53 pickup
## 1788 10028 pumpkaboo-large 119 frisk
## 1789 10028 pumpkaboo-large 15 insomnia
## 1790 10028 pumpkaboo-large 53 pickup
## 1791 10029 pumpkaboo-super 119 frisk
## 1792 10029 pumpkaboo-super 15 insomnia
## 1793 10029 pumpkaboo-super 53 pickup
## 1794 10030 gourgeist-small 119 frisk
## 1795 10030 gourgeist-small 15 insomnia
## 1796 10030 gourgeist-small 53 pickup
## 1797 10031 gourgeist-large 119 frisk
## 1798 10031 gourgeist-large 15 insomnia
## 1799 10031 gourgeist-large 53 pickup
## 1800 10032 gourgeist-super 119 frisk
## 1801 10032 gourgeist-super 15 insomnia
## 1802 10032 gourgeist-super 53 pickup
## 1803 10033 venusaur-mega 47 thick-fat
## 1804 10034 charizard-mega-x 181 tough-claws
## 1805 10035 charizard-mega-y 70 drought
## 1806 10036 blastoise-mega 178 mega-launcher
## 1807 10037 alakazam-mega 36 trace
## 1808 10038 gengar-mega 23 shadow-tag
## 1809 10039 kangaskhan-mega 185 parental-bond
## 1810 10040 pinsir-mega 184 aerilate
## 1811 10041 gyarados-mega 104 mold-breaker
## 1812 10042 aerodactyl-mega 181 tough-claws
## 1813 10043 mewtwo-mega-x 80 steadfast
## 1814 10044 mewtwo-mega-y 15 insomnia
## 1815 10045 ampharos-mega 104 mold-breaker
## 1816 10046 scizor-mega 101 technician
## 1817 10047 heracross-mega 92 skill-link
## 1818 10048 houndoom-mega 94 solar-power
## 1819 10049 tyranitar-mega 45 sand-stream
## 1820 10050 blaziken-mega 3 speed-boost
## 1821 10051 gardevoir-mega 182 pixilate
## 1822 10052 mawile-mega 37 huge-power
## 1823 10053 aggron-mega 111 filter
## 1824 10054 medicham-mega 74 pure-power
## 1825 10055 manectric-mega 22 intimidate
## 1826 10056 banette-mega 158 prankster
## 1827 10057 absol-mega 156 magic-bounce
## 1828 10058 garchomp-mega 159 sand-force
## 1829 10059 lucario-mega 91 adaptability
## 1830 10060 abomasnow-mega 117 snow-warning
## 1831 10061 floette-eternal 166 flower-veil
## 1832 10061 floette-eternal 180 symbiosis
## 1833 10062 latias-mega 26 levitate
## 1834 10063 latios-mega 26 levitate
## 1835 10064 swampert-mega 33 swift-swim
## 1836 10065 sceptile-mega 31 lightning-rod
## 1837 10066 sableye-mega 156 magic-bounce
## 1838 10067 altaria-mega 182 pixilate
## 1839 10068 gallade-mega 39 inner-focus
## 1840 10069 audino-mega 131 healer
## 1841 10070 sharpedo-mega 173 strong-jaw
## 1842 10071 slowbro-mega 75 shell-armor
## 1843 10072 steelix-mega 159 sand-force
## 1844 10073 pidgeot-mega 99 no-guard
## 1845 10074 glalie-mega 174 refrigerate
## 1846 10075 diancie-mega 156 magic-bounce
## 1847 10076 metagross-mega 181 tough-claws
## 1848 10077 kyogre-primal 189 primordial-sea
## 1849 10078 groudon-primal 190 desolate-land
## 1850 10079 rayquaza-mega 191 delta-stream
## 1851 10080 pikachu-rock-star 31 lightning-rod
## 1852 10080 pikachu-rock-star 9 static
## 1853 10081 pikachu-belle 31 lightning-rod
## 1854 10081 pikachu-belle 9 static
## 1855 10082 pikachu-pop-star 31 lightning-rod
## 1856 10082 pikachu-pop-star 9 static
## 1857 10083 pikachu-phd 31 lightning-rod
## 1858 10083 pikachu-phd 9 static
## 1859 10084 pikachu-libre 31 lightning-rod
## 1860 10084 pikachu-libre 9 static
## 1861 10085 pikachu-cosplay 31 lightning-rod
## 1862 10085 pikachu-cosplay 9 static
## 1863 10086 hoopa-unbound 170 magician
## 1864 10087 camerupt-mega 125 sheer-force
## 1865 10088 lopunny-mega 113 scrappy
## 1866 10089 salamence-mega 184 aerilate
## 1867 10090 beedrill-mega 91 adaptability
## SUM(pokemon_stats.base_stat)
## 1 318
## 2 318
## 3 405
## 4 405
## 5 525
## 6 525
## 7 309
## 8 309
## 9 405
## 10 405
## 11 534
## 12 534
## 13 314
## 14 314
## 15 405
## 16 405
## 17 530
## 18 530
## 19 195
## 20 195
## 21 205
## 22 395
## 23 395
## 24 195
## 25 195
## 26 205
## 27 395
## 28 395
## 29 251
## 30 251
## 31 251
## 32 349
## 33 349
## 34 349
## 35 479
## 36 479
## 37 479
## 38 253
## 39 253
## 40 253
## 41 413
## 42 413
## 43 413
## 44 262
## 45 262
## 46 442
## 47 442
## 48 288
## 49 288
## 50 288
## 51 438
## 52 438
## 53 438
## 54 320
## 55 320
## 56 485
## 57 485
## 58 300
## 59 300
## 60 450
## 61 450
## 62 275
## 63 275
## 64 275
## 65 365
## 66 365
## 67 365
## 68 505
## 69 505
## 70 505
## 71 273
## 72 273
## 73 273
## 74 365
## 75 365
## 76 365
## 77 505
## 78 505
## 79 505
## 80 323
## 81 323
## 82 323
## 83 483
## 84 483
## 85 483
## 86 299
## 87 299
## 88 505
## 89 505
## 90 270
## 91 270
## 92 270
## 93 435
## 94 435
## 95 435
## 96 245
## 97 245
## 98 455
## 99 455
## 100 320
## 101 320
## 102 395
## 103 395
## 104 490
## 105 490
## 106 285
## 107 285
## 108 285
## 109 405
## 110 405
## 111 405
## 112 305
## 113 305
## 114 305
## 115 450
## 116 450
## 117 450
## 118 265
## 119 265
## 120 265
## 121 405
## 122 405
## 123 405
## 124 290
## 125 290
## 126 290
## 127 440
## 128 440
## 129 440
## 130 320
## 131 320
## 132 320
## 133 500
## 134 500
## 135 500
## 136 305
## 137 305
## 138 305
## 139 455
## 140 455
## 141 455
## 142 350
## 143 350
## 144 350
## 145 555
## 146 555
## 147 555
## 148 300
## 149 300
## 150 300
## 151 385
## 152 385
## 153 385
## 154 510
## 155 510
## 156 510
## 157 310
## 158 310
## 159 310
## 160 400
## 161 400
## 162 400
## 163 500
## 164 500
## 165 500
## 166 305
## 167 305
## 168 305
## 169 405
## 170 405
## 171 405
## 172 505
## 173 505
## 174 505
## 175 300
## 176 300
## 177 390
## 178 390
## 179 490
## 180 490
## 181 335
## 182 335
## 183 335
## 184 515
## 185 515
## 186 515
## 187 300
## 188 300
## 189 300
## 190 390
## 191 390
## 192 390
## 193 495
## 194 495
## 195 495
## 196 410
## 197 410
## 198 410
## 199 500
## 200 500
## 201 500
## 202 315
## 203 315
## 204 315
## 205 490
## 206 490
## 207 490
## 208 325
## 209 325
## 210 325
## 211 465
## 212 465
## 213 465
## 214 352
## 215 352
## 216 352
## 217 310
## 218 310
## 219 310
## 220 460
## 221 460
## 222 460
## 223 325
## 224 325
## 225 325
## 226 475
## 227 475
## 228 475
## 229 325
## 230 325
## 231 325
## 232 500
## 233 500
## 234 500
## 235 305
## 236 305
## 237 305
## 238 525
## 239 525
## 240 525
## 241 310
## 242 405
## 243 500
## 244 385
## 245 385
## 246 385
## 247 328
## 248 328
## 249 328
## 250 483
## 251 483
## 252 483
## 253 325
## 254 325
## 255 325
## 256 475
## 257 475
## 258 475
## 259 330
## 260 330
## 261 330
## 262 480
## 263 480
## 264 480
## 265 325
## 266 325
## 267 520
## 268 520
## 269 320
## 270 320
## 271 320
## 272 425
## 273 425
## 274 425
## 275 455
## 276 455
## 277 455
## 278 455
## 279 455
## 280 455
## 281 385
## 282 385
## 283 385
## 284 340
## 285 490
## 286 345
## 287 345
## 288 345
## 289 485
## 290 485
## 291 485
## 292 450
## 293 450
## 294 450
## 295 435
## 296 435
## 297 435
## 298 490
## 299 490
## 300 490
## 301 295
## 302 295
## 303 295
## 304 440
## 305 440
## 306 440
## 307 320
## 308 320
## 309 320
## 310 450
## 311 450
## 312 450
## 313 340
## 314 340
## 315 340
## 316 520
## 317 520
## 318 520
## 319 460
## 320 460
## 321 460
## 322 500
## 323 500
## 324 500
## 325 455
## 326 455
## 327 455
## 328 490
## 329 490
## 330 495
## 331 495
## 332 500
## 333 500
## 334 500
## 335 490
## 336 490
## 337 490
## 338 200
## 339 200
## 340 540
## 341 540
## 342 535
## 343 535
## 344 535
## 345 288
## 346 288
## 347 325
## 348 325
## 349 325
## 350 525
## 351 525
## 352 525
## 353 525
## 354 525
## 355 525
## 356 395
## 357 395
## 358 395
## 359 355
## 360 355
## 361 355
## 362 495
## 363 495
## 364 495
## 365 355
## 366 355
## 367 355
## 368 495
## 369 495
## 370 495
## 371 515
## 372 515
## 373 515
## 374 540
## 375 540
## 376 540
## 377 580
## 378 580
## 379 580
## 380 580
## 381 580
## 382 580
## 383 300
## 384 300
## 385 420
## 386 420
## 387 600
## 388 600
## 389 680
## 390 680
## 391 600
## 392 318
## 393 318
## 394 405
## 395 405
## 396 525
## 397 525
## 398 309
## 399 309
## 400 405
## 401 405
## 402 534
## 403 534
## 404 314
## 405 314
## 406 405
## 407 405
## 408 530
## 409 530
## 410 215
## 411 215
## 412 215
## 413 415
## 414 415
## 415 415
## 416 262
## 417 262
## 418 262
## 419 442
## 420 442
## 421 442
## 422 265
## 423 265
## 424 265
## 425 390
## 426 390
## 427 390
## 428 250
## 429 250
## 430 250
## 431 390
## 432 390
## 433 390
## 434 535
## 435 535
## 436 330
## 437 330
## 438 330
## 439 460
## 440 460
## 441 460
## 442 205
## 443 205
## 444 218
## 445 218
## 446 218
## 447 210
## 448 210
## 449 210
## 450 245
## 451 245
## 452 245
## 453 405
## 454 405
## 455 405
## 456 320
## 457 320
## 458 320
## 459 470
## 460 470
## 461 470
## 462 280
## 463 280
## 464 365
## 465 365
## 466 510
## 467 510
## 468 490
## 469 490
## 470 250
## 471 250
## 472 250
## 473 420
## 474 420
## 475 420
## 476 410
## 477 410
## 478 410
## 479 500
## 480 500
## 481 500
## 482 250
## 483 250
## 484 250
## 485 340
## 486 340
## 487 340
## 488 460
## 489 460
## 490 460
## 491 360
## 492 360
## 493 360
## 494 180
## 495 180
## 496 180
## 497 425
## 498 425
## 499 425
## 500 390
## 501 390
## 502 390
## 503 210
## 504 210
## 505 210
## 506 430
## 507 430
## 508 430
## 509 525
## 510 525
## 511 525
## 512 525
## 513 405
## 514 405
## 515 405
## 516 490
## 517 490
## 518 490
## 519 435
## 520 336
## 521 405
## 522 405
## 523 455
## 524 455
## 525 455
## 526 290
## 527 290
## 528 465
## 529 465
## 530 415
## 531 415
## 532 415
## 533 430
## 534 430
## 535 430
## 536 510
## 537 510
## 538 510
## 539 300
## 540 300
## 541 300
## 542 450
## 543 450
## 544 450
## 545 430
## 546 430
## 547 430
## 548 500
## 549 500
## 550 500
## 551 505
## 552 505
## 553 505
## 554 500
## 555 500
## 556 500
## 557 430
## 558 430
## 559 430
## 560 330
## 561 330
## 562 330
## 563 500
## 564 500
## 565 500
## 566 250
## 567 250
## 568 250
## 569 410
## 570 410
## 571 410
## 572 250
## 573 250
## 574 250
## 575 450
## 576 450
## 577 450
## 578 380
## 579 380
## 580 380
## 581 300
## 582 300
## 583 300
## 584 480
## 585 480
## 586 480
## 587 330
## 588 330
## 589 330
## 590 465
## 591 465
## 592 465
## 593 465
## 594 465
## 595 465
## 596 330
## 597 330
## 598 330
## 599 500
## 600 500
## 601 500
## 602 540
## 603 540
## 604 540
## 605 330
## 606 330
## 607 500
## 608 500
## 609 515
## 610 515
## 611 515
## 612 465
## 613 465
## 614 465
## 615 250
## 616 250
## 617 250
## 618 210
## 619 210
## 620 210
## 621 455
## 622 455
## 623 455
## 624 305
## 625 305
## 626 305
## 627 360
## 628 360
## 629 365
## 630 365
## 631 490
## 632 490
## 633 490
## 634 540
## 635 540
## 636 540
## 637 580
## 638 580
## 639 580
## 640 580
## 641 580
## 642 580
## 643 300
## 644 300
## 645 410
## 646 600
## 647 600
## 648 680
## 649 680
## 650 680
## 651 680
## 652 600
## 653 310
## 654 310
## 655 405
## 656 405
## 657 530
## 658 530
## 659 310
## 660 310
## 661 405
## 662 405
## 663 530
## 664 530
## 665 310
## 666 310
## 667 405
## 668 405
## 669 535
## 670 535
## 671 220
## 672 220
## 673 220
## 674 420
## 675 420
## 676 420
## 677 240
## 678 240
## 679 240
## 680 420
## 681 420
## 682 420
## 683 195
## 684 195
## 685 205
## 686 395
## 687 395
## 688 205
## 689 385
## 690 385
## 691 220
## 692 220
## 693 220
## 694 340
## 695 340
## 696 340
## 697 480
## 698 480
## 699 480
## 700 220
## 701 220
## 702 220
## 703 340
## 704 340
## 705 340
## 706 480
## 707 480
## 708 480
## 709 270
## 710 270
## 711 430
## 712 430
## 713 270
## 714 270
## 715 430
## 716 430
## 717 198
## 718 198
## 719 198
## 720 278
## 721 278
## 722 278
## 723 518
## 724 518
## 725 518
## 726 269
## 727 269
## 728 414
## 729 414
## 730 295
## 731 295
## 732 295
## 733 460
## 734 460
## 735 460
## 736 280
## 737 440
## 738 670
## 739 266
## 740 266
## 741 456
## 742 456
## 743 236
## 744 240
## 745 240
## 746 360
## 747 360
## 748 490
## 749 490
## 750 237
## 751 237
## 752 237
## 753 474
## 754 474
## 755 474
## 756 190
## 757 190
## 758 190
## 759 375
## 760 375
## 761 375
## 762 260
## 763 260
## 764 260
## 765 380
## 766 380
## 767 380
## 768 380
## 769 380
## 770 380
## 771 380
## 772 380
## 773 380
## 774 330
## 775 330
## 776 330
## 777 430
## 778 430
## 779 430
## 780 530
## 781 530
## 782 530
## 783 280
## 784 280
## 785 410
## 786 410
## 787 295
## 788 295
## 789 295
## 790 475
## 791 475
## 792 475
## 793 405
## 794 405
## 795 405
## 796 405
## 797 400
## 798 400
## 799 400
## 800 400
## 801 400
## 802 400
## 803 400
## 804 400
## 805 400
## 806 302
## 807 302
## 808 302
## 809 467
## 810 467
## 811 467
## 812 305
## 813 305
## 814 460
## 815 460
## 816 400
## 817 400
## 818 400
## 819 500
## 820 500
## 821 500
## 822 305
## 823 305
## 824 305
## 825 460
## 826 460
## 827 460
## 828 470
## 829 470
## 830 330
## 831 330
## 832 330
## 833 470
## 834 470
## 835 470
## 836 360
## 837 360
## 838 360
## 839 290
## 840 290
## 841 290
## 842 340
## 843 520
## 844 335
## 845 335
## 846 475
## 847 475
## 848 310
## 849 310
## 850 490
## 851 490
## 852 458
## 853 458
## 854 458
## 855 458
## 856 440
## 857 440
## 858 288
## 859 288
## 860 288
## 861 468
## 862 468
## 863 468
## 864 308
## 865 308
## 866 308
## 867 468
## 868 468
## 869 468
## 870 300
## 871 500
## 872 355
## 873 355
## 874 495
## 875 495
## 876 355
## 877 355
## 878 495
## 879 495
## 880 200
## 881 200
## 882 200
## 883 540
## 884 540
## 885 540
## 886 420
## 887 440
## 888 440
## 889 295
## 890 295
## 891 295
## 892 455
## 893 455
## 894 455
## 895 295
## 896 295
## 897 455
## 898 455
## 899 460
## 900 460
## 901 460
## 902 425
## 903 465
## 904 465
## 905 465
## 906 260
## 907 260
## 908 300
## 909 300
## 910 300
## 911 480
## 912 480
## 913 480
## 914 290
## 915 290
## 916 290
## 917 410
## 918 410
## 919 410
## 920 530
## 921 530
## 922 530
## 923 345
## 924 345
## 925 485
## 926 485
## 927 485
## 928 485
## 929 485
## 930 485
## 931 485
## 932 330
## 933 330
## 934 300
## 935 300
## 936 420
## 937 420
## 938 600
## 939 600
## 940 300
## 941 300
## 942 420
## 943 420
## 944 600
## 945 600
## 946 580
## 947 580
## 948 580
## 949 580
## 950 580
## 951 580
## 952 600
## 953 600
## 954 670
## 955 670
## 956 680
## 957 600
## 958 600
## 959 318
## 960 318
## 961 405
## 962 405
## 963 525
## 964 525
## 965 309
## 966 309
## 967 405
## 968 405
## 969 534
## 970 534
## 971 314
## 972 314
## 973 405
## 974 405
## 975 530
## 976 530
## 977 245
## 978 245
## 979 340
## 980 340
## 981 485
## 982 485
## 983 250
## 984 250
## 985 250
## 986 410
## 987 410
## 988 410
## 989 194
## 990 194
## 991 384
## 992 384
## 993 263
## 994 263
## 995 263
## 996 363
## 997 363
## 998 363
## 999 523
## 1000 523
## 1001 523
## 1002 280
## 1003 280
## 1004 280
## 1005 515
## 1006 515
## 1007 515
## 1008 350
## 1009 350
## 1010 495
## 1011 495
## 1012 350
## 1013 350
## 1014 495
## 1015 495
## 1016 224
## 1017 224
## 1018 424
## 1019 424
## 1020 424
## 1021 424
## 1022 244
## 1023 244
## 1024 474
## 1025 474
## 1026 405
## 1027 405
## 1028 405
## 1029 330
## 1030 330
## 1031 495
## 1032 495
## 1033 275
## 1034 450
## 1035 325
## 1036 325
## 1037 325
## 1038 475
## 1039 475
## 1040 475
## 1041 482
## 1042 482
## 1043 482
## 1044 348
## 1045 348
## 1046 348
## 1047 498
## 1048 498
## 1049 498
## 1050 350
## 1051 350
## 1052 350
## 1053 480
## 1054 480
## 1055 480
## 1056 495
## 1057 505
## 1058 505
## 1059 505
## 1060 310
## 1061 310
## 1062 310
## 1063 452
## 1064 452
## 1065 452
## 1066 285
## 1067 329
## 1068 329
## 1069 329
## 1070 479
## 1071 479
## 1072 479
## 1073 300
## 1074 300
## 1075 300
## 1076 500
## 1077 500
## 1078 500
## 1079 290
## 1080 290
## 1081 290
## 1082 310
## 1083 310
## 1084 310
## 1085 220
## 1086 220
## 1087 220
## 1088 411
## 1089 411
## 1090 411
## 1091 485
## 1092 485
## 1093 300
## 1094 300
## 1095 410
## 1096 410
## 1097 600
## 1098 600
## 1099 390
## 1100 390
## 1101 390
## 1102 285
## 1103 285
## 1104 285
## 1105 525
## 1106 525
## 1107 525
## 1108 330
## 1109 330
## 1110 525
## 1111 525
## 1112 330
## 1113 330
## 1114 330
## 1115 500
## 1116 500
## 1117 500
## 1118 300
## 1119 300
## 1120 300
## 1121 490
## 1122 490
## 1123 490
## 1124 454
## 1125 330
## 1126 330
## 1127 330
## 1128 460
## 1129 460
## 1130 460
## 1131 345
## 1132 345
## 1133 345
## 1134 334
## 1135 334
## 1136 494
## 1137 494
## 1138 510
## 1139 510
## 1140 535
## 1141 535
## 1142 535
## 1143 515
## 1144 515
## 1145 515
## 1146 535
## 1147 535
## 1148 535
## 1149 535
## 1150 535
## 1151 535
## 1152 540
## 1153 540
## 1154 540
## 1155 540
## 1156 545
## 1157 545
## 1158 545
## 1159 515
## 1160 515
## 1161 515
## 1162 525
## 1163 525
## 1164 525
## 1165 525
## 1166 510
## 1167 510
## 1168 510
## 1169 530
## 1170 530
## 1171 530
## 1172 535
## 1173 535
## 1174 535
## 1175 518
## 1176 518
## 1177 525
## 1178 525
## 1179 525
## 1180 525
## 1181 525
## 1182 480
## 1183 480
## 1184 440
## 1185 580
## 1186 580
## 1187 580
## 1188 680
## 1189 680
## 1190 680
## 1191 680
## 1192 600
## 1193 600
## 1194 670
## 1195 680
## 1196 680
## 1197 600
## 1198 480
## 1199 600
## 1200 600
## 1201 600
## 1202 720
## 1203 600
## 1204 308
## 1205 308
## 1206 413
## 1207 413
## 1208 528
## 1209 528
## 1210 308
## 1211 308
## 1212 418
## 1213 418
## 1214 528
## 1215 528
## 1216 308
## 1217 308
## 1218 413
## 1219 413
## 1220 528
## 1221 528
## 1222 255
## 1223 255
## 1224 255
## 1225 420
## 1226 420
## 1227 420
## 1228 275
## 1229 275
## 1230 275
## 1231 370
## 1232 370
## 1233 370
## 1234 500
## 1235 500
## 1236 500
## 1237 281
## 1238 281
## 1239 281
## 1240 446
## 1241 446
## 1242 446
## 1243 316
## 1244 316
## 1245 498
## 1246 498
## 1247 316
## 1248 316
## 1249 498
## 1250 498
## 1251 316
## 1252 316
## 1253 498
## 1254 498
## 1255 292
## 1256 292
## 1257 292
## 1258 487
## 1259 487
## 1260 487
## 1261 264
## 1262 264
## 1263 264
## 1264 358
## 1265 358
## 1266 358
## 1267 488
## 1268 488
## 1269 488
## 1270 295
## 1271 295
## 1272 295
## 1273 497
## 1274 497
## 1275 497
## 1276 280
## 1277 280
## 1278 390
## 1279 390
## 1280 515
## 1281 515
## 1282 313
## 1283 313
## 1284 313
## 1285 425
## 1286 425
## 1287 425
## 1288 328
## 1289 328
## 1290 328
## 1291 508
## 1292 508
## 1293 508
## 1294 445
## 1295 445
## 1296 445
## 1297 305
## 1298 305
## 1299 305
## 1300 405
## 1301 405
## 1302 405
## 1303 505
## 1304 505
## 1305 505
## 1306 294
## 1307 294
## 1308 294
## 1309 384
## 1310 384
## 1311 384
## 1312 509
## 1313 509
## 1314 509
## 1315 465
## 1316 465
## 1317 465
## 1318 465
## 1319 465
## 1320 465
## 1321 310
## 1322 310
## 1323 310
## 1324 380
## 1325 380
## 1326 380
## 1327 500
## 1328 500
## 1329 500
## 1330 260
## 1331 260
## 1332 260
## 1333 360
## 1334 360
## 1335 360
## 1336 485
## 1337 485
## 1338 485
## 1339 280
## 1340 280
## 1341 280
## 1342 480
## 1343 480
## 1344 480
## 1345 280
## 1346 280
## 1347 280
## 1348 480
## 1349 480
## 1350 480
## 1351 460
## 1352 460
## 1353 460
## 1354 292
## 1355 292
## 1356 292
## 1357 351
## 1358 351
## 1359 351
## 1360 519
## 1361 519
## 1362 519
## 1363 315
## 1364 315
## 1365 480
## 1366 480
## 1367 461
## 1368 461
## 1369 461
## 1370 325
## 1371 325
## 1372 325
## 1373 475
## 1374 475
## 1375 475
## 1376 348
## 1377 348
## 1378 348
## 1379 488
## 1380 488
## 1381 488
## 1382 490
## 1383 490
## 1384 490
## 1385 303
## 1386 483
## 1387 355
## 1388 355
## 1389 355
## 1390 495
## 1391 495
## 1392 495
## 1393 401
## 1394 567
## 1395 329
## 1396 329
## 1397 329
## 1398 474
## 1399 474
## 1400 474
## 1401 330
## 1402 510
## 1403 300
## 1404 300
## 1405 300
## 1406 470
## 1407 470
## 1408 470
## 1409 290
## 1410 290
## 1411 290
## 1412 390
## 1413 390
## 1414 390
## 1415 490
## 1416 490
## 1417 490
## 1418 290
## 1419 290
## 1420 290
## 1421 370
## 1422 370
## 1423 370
## 1424 490
## 1425 490
## 1426 490
## 1427 305
## 1428 305
## 1429 305
## 1430 473
## 1431 473
## 1432 473
## 1433 305
## 1434 305
## 1435 395
## 1436 395
## 1437 535
## 1438 535
## 1439 335
## 1440 335
## 1441 335
## 1442 475
## 1443 475
## 1444 475
## 1445 428
## 1446 428
## 1447 315
## 1448 315
## 1449 315
## 1450 495
## 1451 495
## 1452 495
## 1453 294
## 1454 294
## 1455 464
## 1456 464
## 1457 335
## 1458 335
## 1459 335
## 1460 480
## 1461 480
## 1462 480
## 1463 470
## 1464 470
## 1465 470
## 1466 319
## 1467 319
## 1468 319
## 1469 472
## 1470 472
## 1471 472
## 1472 305
## 1473 489
## 1474 489
## 1475 300
## 1476 300
## 1477 300
## 1478 440
## 1479 440
## 1480 440
## 1481 520
## 1482 520
## 1483 520
## 1484 275
## 1485 405
## 1486 515
## 1487 335
## 1488 335
## 1489 335
## 1490 485
## 1491 485
## 1492 485
## 1493 275
## 1494 275
## 1495 275
## 1496 370
## 1497 370
## 1498 370
## 1499 520
## 1500 520
## 1501 520
## 1502 320
## 1503 320
## 1504 320
## 1505 410
## 1506 410
## 1507 410
## 1508 540
## 1509 540
## 1510 540
## 1511 305
## 1512 305
## 1513 485
## 1514 485
## 1515 485
## 1516 305
## 1517 305
## 1518 305
## 1519 495
## 1520 495
## 1521 495
## 1522 471
## 1523 471
## 1524 471
## 1525 350
## 1526 350
## 1527 350
## 1528 510
## 1529 510
## 1530 510
## 1531 485
## 1532 485
## 1533 485
## 1534 303
## 1535 303
## 1536 303
## 1537 483
## 1538 483
## 1539 483
## 1540 340
## 1541 340
## 1542 340
## 1543 490
## 1544 490
## 1545 490
## 1546 490
## 1547 490
## 1548 490
## 1549 350
## 1550 350
## 1551 350
## 1552 510
## 1553 510
## 1554 510
## 1555 370
## 1556 370
## 1557 370
## 1558 510
## 1559 510
## 1560 510
## 1561 484
## 1562 484
## 1563 484
## 1564 484
## 1565 484
## 1566 484
## 1567 300
## 1568 420
## 1569 600
## 1570 360
## 1571 360
## 1572 550
## 1573 550
## 1574 580
## 1575 580
## 1576 580
## 1577 580
## 1578 580
## 1579 580
## 1580 580
## 1581 680
## 1582 680
## 1583 600
## 1584 600
## 1585 660
## 1586 580
## 1587 600
## 1588 600
## 1589 313
## 1590 313
## 1591 405
## 1592 405
## 1593 530
## 1594 530
## 1595 307
## 1596 307
## 1597 409
## 1598 409
## 1599 534
## 1600 534
## 1601 314
## 1602 314
## 1603 405
## 1604 405
## 1605 530
## 1606 530
## 1607 237
## 1608 237
## 1609 237
## 1610 423
## 1611 423
## 1612 423
## 1613 278
## 1614 278
## 1615 382
## 1616 382
## 1617 499
## 1618 499
## 1619 200
## 1620 200
## 1621 200
## 1622 213
## 1623 213
## 1624 411
## 1625 411
## 1626 411
## 1627 369
## 1628 369
## 1629 369
## 1630 507
## 1631 507
## 1632 507
## 1633 303
## 1634 303
## 1635 371
## 1636 371
## 1637 552
## 1638 552
## 1639 350
## 1640 350
## 1641 531
## 1642 531
## 1643 348
## 1644 348
## 1645 348
## 1646 495
## 1647 495
## 1648 495
## 1649 472
## 1650 355
## 1651 355
## 1652 355
## 1653 466
## 1654 466
## 1655 466
## 1656 325
## 1657 448
## 1658 520
## 1659 341
## 1660 341
## 1661 462
## 1662 462
## 1663 341
## 1664 341
## 1665 480
## 1666 480
## 1667 288
## 1668 288
## 1669 288
## 1670 482
## 1671 482
## 1672 482
## 1673 306
## 1674 306
## 1675 306
## 1676 500
## 1677 500
## 1678 500
## 1679 320
## 1680 320
## 1681 320
## 1682 494
## 1683 494
## 1684 494
## 1685 330
## 1686 500
## 1687 289
## 1688 289
## 1689 289
## 1690 481
## 1691 481
## 1692 481
## 1693 362
## 1694 362
## 1695 521
## 1696 521
## 1697 362
## 1698 362
## 1699 521
## 1700 521
## 1701 525
## 1702 525
## 1703 500
## 1704 500
## 1705 500
## 1706 431
## 1707 431
## 1708 431
## 1709 500
## 1710 500
## 1711 300
## 1712 300
## 1713 300
## 1714 452
## 1715 452
## 1716 452
## 1717 600
## 1718 600
## 1719 600
## 1720 470
## 1721 470
## 1722 309
## 1723 309
## 1724 309
## 1725 474
## 1726 474
## 1727 474
## 1728 335
## 1729 335
## 1730 335
## 1731 494
## 1732 494
## 1733 494
## 1734 304
## 1735 304
## 1736 304
## 1737 514
## 1738 514
## 1739 514
## 1740 245
## 1741 245
## 1742 245
## 1743 535
## 1744 535
## 1745 535
## 1746 680
## 1747 680
## 1748 600
## 1749 600
## 1750 600
## 1751 600
## 1752 600
## 1753 600
## 1754 600
## 1755 424
## 1756 424
## 1757 424
## 1758 424
## 1759 600
## 1760 680
## 1761 520
## 1762 520
## 1763 520
## 1764 520
## 1765 520
## 1766 420
## 1767 420
## 1768 420
## 1769 460
## 1770 460
## 1771 460
## 1772 540
## 1773 540
## 1774 600
## 1775 580
## 1776 580
## 1777 600
## 1778 700
## 1779 700
## 1780 580
## 1781 466
## 1782 466
## 1783 466
## 1784 520
## 1785 335
## 1786 335
## 1787 335
## 1788 335
## 1789 335
## 1790 335
## 1791 335
## 1792 335
## 1793 335
## 1794 494
## 1795 494
## 1796 494
## 1797 494
## 1798 494
## 1799 494
## 1800 494
## 1801 494
## 1802 494
## 1803 625
## 1804 634
## 1805 634
## 1806 630
## 1807 590
## 1808 600
## 1809 590
## 1810 600
## 1811 640
## 1812 615
## 1813 780
## 1814 780
## 1815 610
## 1816 600
## 1817 600
## 1818 600
## 1819 700
## 1820 630
## 1821 618
## 1822 480
## 1823 630
## 1824 510
## 1825 575
## 1826 555
## 1827 565
## 1828 700
## 1829 625
## 1830 594
## 1831 551
## 1832 551
## 1833 700
## 1834 700
## 1835 635
## 1836 630
## 1837 480
## 1838 590
## 1839 618
## 1840 545
## 1841 560
## 1842 590
## 1843 610
## 1844 579
## 1845 580
## 1846 700
## 1847 700
## 1848 770
## 1849 770
## 1850 780
## 1851 320
## 1852 320
## 1853 320
## 1854 320
## 1855 320
## 1856 320
## 1857 320
## 1858 320
## 1859 320
## 1860 320
## 1861 320
## 1862 320
## 1863 680
## 1864 560
## 1865 580
## 1866 700
## 1867 495
Now that we have all of the pokemon, their abilities, and base stats, lets see how many abilities and how many of each one there are.
ability_nums = dbGetQuery(pokemonDatabase, "
SELECT DISTINCT ability_id
FROM pokemon_abilities")
dim(ability_nums)[1]
## [1] 191
dbGetQuery(pokemonDatabase, "
SELECT ability_id, COUNT(ability_id)
FROM pokemon_abilities
GROUP BY ability_id
")
## ability_id COUNT(ability_id)
## 1 1 7
## 2 2 2
## 3 3 12
## 4 4 8
## 5 5 36
## 6 6 18
## 7 7 10
## 8 8 20
## 9 9 21
## 10 10 7
## 11 11 22
## 12 12 20
## 13 13 6
## 14 14 9
## 15 15 20
## 16 16 1
## 17 17 3
## 18 18 18
## 19 19 7
## 20 20 20
## 21 21 5
## 22 22 29
## 23 23 6
## 24 24 6
## 25 25 1
## 26 26 40
## 27 27 7
## 28 28 15
## 29 29 13
## 30 30 15
## 31 31 22
## 32 32 13
## 33 33 39
## 34 34 35
## 35 35 6
## 36 36 6
## 37 37 6
## 38 38 16
## 39 39 27
## 40 40 3
## 41 41 11
## 42 42 5
## 43 43 12
## 44 44 11
## 45 45 4
## 46 46 28
## 47 47 22
## 48 48 15
## 49 49 16
## 50 50 24
## 51 51 32
## 52 52 9
## 53 53 21
## 54 54 3
## 55 55 18
## 56 56 13
## 57 57 8
## 58 58 6
## 59 59 4
## 60 60 8
## 61 61 16
## 62 62 21
## 63 63 3
## 64 64 4
## 65 65 20
## 66 66 20
## 67 67 20
## 68 68 24
## 69 69 20
## 70 70 4
## 71 71 3
## 72 72 12
## 73 73 2
## 74 74 3
## 75 75 22
## 76 76 1
## 77 77 7
## 78 78 4
## 79 79 18
## 80 80 10
## 81 81 8
## 82 82 19
## 83 83 7
## 84 84 12
## 85 85 2
## 86 86 5
## 87 87 7
## 88 88 4
## 89 89 12
## 90 90 3
## 91 91 11
## 92 92 7
## 93 93 21
## 94 94 9
## 95 95 9
## 96 96 2
## 97 97 14
## 98 98 10
## 99 99 9
## 100 100 1
## 101 101 15
## 102 102 14
## 103 103 7
## 104 104 18
## 105 105 9
## 106 106 8
## 107 107 9
## 108 108 6
## 109 109 7
## 110 110 9
## 111 111 3
## 112 112 1
## 113 113 11
## 114 114 7
## 115 115 14
## 116 116 4
## 117 117 5
## 118 118 2
## 119 119 26
## 120 120 12
## 121 121 1
## 122 122 1
## 123 123 1
## 124 124 7
## 125 125 26
## 126 126 7
## 127 127 19
## 128 128 12
## 129 129 2
## 130 130 5
## 131 131 8
## 132 132 8
## 133 133 16
## 134 134 5
## 135 135 5
## 136 136 2
## 137 137 1
## 138 138 2
## 139 139 5
## 140 140 16
## 141 141 7
## 142 142 19
## 143 143 7
## 144 144 17
## 145 145 12
## 146 146 6
## 147 147 4
## 148 148 12
## 149 149 2
## 150 150 1
## 151 151 21
## 152 152 2
## 153 153 13
## 154 154 10
## 155 155 11
## 156 156 6
## 157 157 16
## 158 158 14
## 159 159 16
## 160 160 2
## 161 161 2
## 162 162 1
## 163 163 2
## 164 164 2
## 165 165 2
## 166 166 4
## 167 167 3
## 168 168 4
## 169 169 1
## 170 170 6
## 171 171 3
## 172 172 8
## 173 173 3
## 174 174 3
## 175 175 2
## 176 176 2
## 177 177 3
## 178 178 3
## 179 179 2
## 180 180 4
## 181 181 5
## 182 182 3
## 183 183 3
## 184 184 2
## 185 185 1
## 186 186 1
## 187 187 1
## 188 188 1
## 189 189 1
## 190 190 1
## 191 191 1
Based on historical data, can we build a predictive model that estimates a Pokémon’s base stats based on its type, weight, height, and generation
dbListTables(pokemonDatabase)
## [1] "abilities" "ability_changelog"
## [3] "ability_changelog_prose" "ability_flavor_text"
## [5] "ability_names" "ability_prose"
## [7] "berries" "berry_firmness"
## [9] "berry_firmness_names" "berry_flavors"
## [11] "characteristic_text" "characteristics"
## [13] "conquest_episode_names" "conquest_episode_warriors"
## [15] "conquest_episodes" "conquest_kingdom_names"
## [17] "conquest_kingdoms" "conquest_max_links"
## [19] "conquest_move_data" "conquest_move_displacement_prose"
## [21] "conquest_move_displacements" "conquest_move_effect_prose"
## [23] "conquest_move_effects" "conquest_move_range_prose"
## [25] "conquest_move_ranges" "conquest_pokemon_abilities"
## [27] "conquest_pokemon_evolution" "conquest_pokemon_moves"
## [29] "conquest_pokemon_stats" "conquest_stat_names"
## [31] "conquest_stats" "conquest_transformation_pokemon"
## [33] "conquest_transformation_warriors" "conquest_warrior_archetypes"
## [35] "conquest_warrior_names" "conquest_warrior_rank_stat_map"
## [37] "conquest_warrior_ranks" "conquest_warrior_skill_names"
## [39] "conquest_warrior_skills" "conquest_warrior_specialties"
## [41] "conquest_warrior_stat_names" "conquest_warrior_stats"
## [43] "conquest_warrior_transformation" "conquest_warriors"
## [45] "contest_combos" "contest_effect_prose"
## [47] "contest_effects" "contest_type_names"
## [49] "contest_types" "egg_group_prose"
## [51] "egg_groups" "encounter_condition_prose"
## [53] "encounter_condition_value_map" "encounter_condition_value_prose"
## [55] "encounter_condition_values" "encounter_conditions"
## [57] "encounter_method_prose" "encounter_methods"
## [59] "encounter_slots" "encounters"
## [61] "evolution_chains" "evolution_trigger_prose"
## [63] "evolution_triggers" "experience"
## [65] "genders" "generation_names"
## [67] "generations" "growth_rate_prose"
## [69] "growth_rates" "item_categories"
## [71] "item_category_prose" "item_flag_map"
## [73] "item_flag_prose" "item_flags"
## [75] "item_flavor_summaries" "item_flavor_text"
## [77] "item_fling_effect_prose" "item_fling_effects"
## [79] "item_game_indices" "item_names"
## [81] "item_pocket_names" "item_pockets"
## [83] "item_prose" "items"
## [85] "language_names" "languages"
## [87] "location_area_encounter_rates" "location_area_prose"
## [89] "location_areas" "location_game_indices"
## [91] "location_names" "locations"
## [93] "machines" "move_battle_style_prose"
## [95] "move_battle_styles" "move_changelog"
## [97] "move_damage_class_prose" "move_damage_classes"
## [99] "move_effect_changelog" "move_effect_changelog_prose"
## [101] "move_effect_prose" "move_effects"
## [103] "move_flag_map" "move_flag_prose"
## [105] "move_flags" "move_flavor_summaries"
## [107] "move_flavor_text" "move_meta"
## [109] "move_meta_ailment_names" "move_meta_ailments"
## [111] "move_meta_categories" "move_meta_category_prose"
## [113] "move_meta_stat_changes" "move_names"
## [115] "move_target_prose" "move_targets"
## [117] "moves" "nature_battle_style_preferences"
## [119] "nature_names" "nature_pokeathlon_stats"
## [121] "natures" "pal_park"
## [123] "pal_park_area_names" "pal_park_areas"
## [125] "pokeathlon_stat_names" "pokeathlon_stats"
## [127] "pokedex_prose" "pokedex_version_groups"
## [129] "pokedexes" "pokemon"
## [131] "pokemon_abilities" "pokemon_color_names"
## [133] "pokemon_colors" "pokemon_dex_numbers"
## [135] "pokemon_egg_groups" "pokemon_evolution"
## [137] "pokemon_form_generations" "pokemon_form_names"
## [139] "pokemon_form_pokeathlon_stats" "pokemon_forms"
## [141] "pokemon_game_indices" "pokemon_habitat_names"
## [143] "pokemon_habitats" "pokemon_items"
## [145] "pokemon_move_method_prose" "pokemon_move_methods"
## [147] "pokemon_moves" "pokemon_shape_prose"
## [149] "pokemon_shapes" "pokemon_species"
## [151] "pokemon_species_flavor_summaries" "pokemon_species_flavor_text"
## [153] "pokemon_species_names" "pokemon_species_prose"
## [155] "pokemon_stats" "pokemon_types"
## [157] "region_names" "regions"
## [159] "stat_names" "stats"
## [161] "super_contest_combos" "super_contest_effect_prose"
## [163] "super_contest_effects" "type_efficacy"
## [165] "type_game_indices" "type_names"
## [167] "types" "version_group_pokemon_move_methods"
## [169] "version_group_regions" "version_groups"
## [171] "version_names" "versions"
dbDisconnect(pokemonDatabase)